Explorar el Código

Enable external component e2e on Android

Guy Carmeli hace 6 años
padre
commit
9f32a721ee
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      e2e/ComplexLayout.test.js

+ 2
- 2
e2e/ComplexLayout.test.js Ver fichero

@@ -8,13 +8,13 @@ describe('complex layout', () => {
8 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 12
     await elementById(testIDs.COMPLEX_LAYOUT_BUTTON).tap();
13 13
     await elementById(testIDs.EXTERNAL_COMPONENT_IN_STACK).tap();
14 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 18
     await elementById(testIDs.COMPLEX_LAYOUT_BUTTON).tap();
19 19
     await elementById(testIDs.EXTERNAL_COMPONENT_IN_DEEP_STACK).tap();
20 20
     await expect(elementByLabel('External component in deep stack')).toBeVisible();