Files
drip/e2e/firstTest.spec.js
T
Sofiya Tepikin 7e807dba7f Introducing detox
2019-07-21 16:17:16 +02:00

13 lines
398 B
JavaScript

describe('Example', () => {
beforeEach(async () => {
await device.reloadReactNative();
});
it('should navigate to home on accepting the license agreement', async () => {
await expect(element(by.id('licensePage'))).toBeVisible();
await element(by.id('licenseOkButton')).tap();
await expect(
element(by.id('pageTitle').and(by.text('home')))
).toBeVisible();
});
});