Browse Source

Run static lifecycle events e2e only on Android for now

Guy Carmeli 6 years ago
parent
commit
74efc9215e
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      e2e/StaticLifecycleEvents.test.js

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

2
 const testIDs = require('../playground/src/testIDs');
2
 const testIDs = require('../playground/src/testIDs');
3
 const { elementByLabel, elementById } = Utils;
3
 const { elementByLabel, elementById } = Utils;
4
 
4
 
5
-describe('Overlay', () => {
5
+describe('static lifecycle events', () => {
6
   beforeEach(async () => {
6
   beforeEach(async () => {
7
     await device.relaunchApp();
7
     await device.relaunchApp();
8
   });
8
   });
9
 
9
 
10
-  it.skip('didAppear didDisappear', async () => {
10
+  it(':android: didAppear didDisappear', async () => {
11
     await elementById(testIDs.PUSH_STATIC_LIFECYCLE_BUTTON).tap();
11
     await elementById(testIDs.PUSH_STATIC_LIFECYCLE_BUTTON).tap();
12
     await expect(elementByLabel('Static Lifecycle Events Overlay')).toBeVisible();
12
     await expect(elementByLabel('Static Lifecycle Events Overlay')).toBeVisible();
13
     await expect(elementByLabel('didAppear | navigation.playground.StaticLifecycleOverlay')).toBeVisible();
13
     await expect(elementByLabel('didAppear | navigation.playground.StaticLifecycleOverlay')).toBeVisible();