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/completion.test.ts | |
parent | e304581fb15eabb3a973d363a282ee7546561e01 (diff) |
Move to jest on e2e test
Diffstat (limited to 'e2e/completion.test.ts')
-rw-r--r-- | e2e/completion.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/completion.test.ts b/e2e/completion.test.ts index c0e7052..258353c 100644 --- a/e2e/completion.test.ts +++ b/e2e/completion.test.ts @@ -11,14 +11,14 @@ describe("general completion test", () => { let webdriver: WebDriver; let page: Page; - before(async () => { + beforeAll(async () => { lanthan = await Builder.forBrowser("firefox") .spyAddon(path.join(__dirname, "..")) .build(); webdriver = lanthan.getWebDriver(); }); - after(async () => { + afterAll(async () => { if (lanthan) { await lanthan.quit(); } |