diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-09-26 17:22:54 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-09-27 12:30:19 +0900 |
commit | 9a0c283ae2ebb7321b8f46a97178e5e284b02da4 (patch) | |
tree | 9beae544969d829d8a358d3a3602378ea4bd9513 /e2e/command_open.test.ts | |
parent | e304581fb15eabb3a973d363a282ee7546561e01 (diff) |
Move to jest on e2e test
Diffstat (limited to 'e2e/command_open.test.ts')
-rw-r--r-- | e2e/command_open.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/command_open.test.ts b/e2e/command_open.test.ts index 2db522a..239d775 100644 --- a/e2e/command_open.test.ts +++ b/e2e/command_open.test.ts @@ -18,7 +18,7 @@ describe("open command test", () => { let browser: any; let page: Page; - before(async () => { + beforeAll(async () => { lanthan = await Builder.forBrowser("firefox") .spyAddon(path.join(__dirname, "..")) .build(); @@ -39,7 +39,7 @@ describe("open command test", () => { ); }); - after(async () => { + afterAll(async () => { await server.stop(); if (lanthan) { await lanthan.quit(); |