소스 검색

Enable external component e2e on Android

Guy Carmeli 6 년 전
부모
커밋
9f32a721ee
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      e2e/ComplexLayout.test.js

+ 2
- 2
e2e/ComplexLayout.test.js 파일 보기

@@ -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();