Browse Source

Enable external component e2e on Android

Guy Carmeli 6 years ago
parent
commit
9f32a721ee
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      e2e/ComplexLayout.test.js

+ 2
- 2
e2e/ComplexLayout.test.js View File

8
     await device.relaunchApp();
8
     await device.relaunchApp();
9
   });
9
   });
10
 
10
 
11
-  test(':ios: shows external component in stack in modal', async () => {
11
+  test('shows external component in stack in modal', async () => {
12
     await elementById(testIDs.COMPLEX_LAYOUT_BUTTON).tap();
12
     await elementById(testIDs.COMPLEX_LAYOUT_BUTTON).tap();
13
     await elementById(testIDs.EXTERNAL_COMPONENT_IN_STACK).tap();
13
     await elementById(testIDs.EXTERNAL_COMPONENT_IN_STACK).tap();
14
     await expect(elementByLabel('External component in stack')).toBeVisible();
14
     await expect(elementByLabel('External component in stack')).toBeVisible();
15
   });
15
   });
16
 
16
 
17
-  test(':ios: shows external component in deep stack in modal', async () => {
17
+  test('shows external component in deep stack in modal', async () => {
18
     await elementById(testIDs.COMPLEX_LAYOUT_BUTTON).tap();
18
     await elementById(testIDs.COMPLEX_LAYOUT_BUTTON).tap();
19
     await elementById(testIDs.EXTERNAL_COMPONENT_IN_DEEP_STACK).tap();
19
     await elementById(testIDs.EXTERNAL_COMPONENT_IN_DEEP_STACK).tap();
20
     await expect(elementByLabel('External component in deep stack')).toBeVisible();
20
     await expect(elementByLabel('External component in deep stack')).toBeVisible();