diff --git a/e2e/onboarding.test.js b/e2e/onboarding.test.js index 7c88ef15..f36474ad 100644 --- a/e2e/onboarding.test.js +++ b/e2e/onboarding.test.js @@ -1,3 +1,5 @@ +/* eslint-disable no-undef */ + describe('Onboarding', () => { beforeAll(async () => { await device.launchApp({permissions: {notifications: 'YES'}}); diff --git a/e2e/starter.test-example.js b/e2e/starter.test-example.js deleted file mode 100644 index 054c2a16..00000000 --- a/e2e/starter.test-example.js +++ /dev/null @@ -1,23 +0,0 @@ -describe('Example', () => { - beforeAll(async () => { - await device.launchApp(); - }); - - beforeEach(async () => { - await device.reloadReactNative(); - }); - - it('should have welcome screen', async () => { - await expect(element(by.id('welcome'))).toBeVisible(); - }); - - it('should show hello screen after tap', async () => { - await element(by.id('hello_button')).tap(); - await expect(element(by.text('Hello!!!'))).toBeVisible(); - }); - - it('should show world screen after tap', async () => { - await element(by.id('world_button')).tap(); - await expect(element(by.text('World!!!'))).toBeVisible(); - }); -});