Browse Source

empty android e2e

Daniel Zlotin 7 years ago
parent
commit
bbbb089c70

+ 18
- 0
AndroidE2E/app/src/androidTest/java/com/reactnativenavigation/e2e/androide2e/ScreenStyleStaticTest.java View File

@@ -0,0 +1,18 @@
1
+package com.reactnativenavigation.e2e.androide2e;
2
+
3
+import android.support.test.uiautomator.By;
4
+
5
+import org.junit.Ignore;
6
+import org.junit.Test;
7
+
8
+public class ScreenStyleStaticTest extends BaseTest {
9
+
10
+	@Test
11
+	@Ignore
12
+	public void declareNavigationStyleOnContainerComponent() throws Exception {
13
+		launchTheApp();
14
+		assertMainShown();
15
+		elementByText("PUSH").click();
16
+		assertExists(By.text("Static Title"));
17
+	}
18
+}