diff options
author | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
---|---|---|
committer | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
commit | f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (patch) | |
tree | 575c0ff2cbb846252bd2e494c81c396846aab2f6 /e2e/firstTest.spec.js | |
parent | 67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff) |
Apply Prettier
Diffstat (limited to 'e2e/firstTest.spec.js')
-rw-r--r-- | e2e/firstTest.spec.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/e2e/firstTest.spec.js b/e2e/firstTest.spec.js index a407fd3..91729fb 100644 --- a/e2e/firstTest.spec.js +++ b/e2e/firstTest.spec.js @@ -1,19 +1,19 @@ // For more info on how to write Detox tests, see the official docs: // https://github.com/wix/Detox/blob/master/docs/README.md -const { reloadApp } = require("./reload") +const { reloadApp } = require('./reload') -describe("Example", () => { +describe('Example', () => { beforeEach(async () => { await reloadApp() }) - it("should have welcome screen", async () => { - await expect(element(by.id("WelcomeScreen"))).toBeVisible() + it('should have welcome screen', async () => { + await expect(element(by.id('WelcomeScreen'))).toBeVisible() }) - it("should go to next screen after tap", async () => { - await element(by.id("next-screen-button")).tap() - await expect(element(by.id("DemoScreen"))).toBeVisible() + it('should go to next screen after tap', async () => { + await element(by.id('next-screen-button')).tap() + await expect(element(by.id('DemoScreen'))).toBeVisible() }) }) |