diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-10-10 01:42:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 01:42:37 +0000 |
commit | dfcefe1b84cc96ead1c8d8f9aa65ff05ccd70378 (patch) | |
tree | 12f1a4ed6da8fd96c034d23bcf08b1535bca1113 /e2e/command_quit.test.ts | |
parent | 24f4f06db6572d81cadfe191f36c433a79985871 (diff) | |
parent | 039095e18562c44edda2c5a83a3d82c2e220b370 (diff) |
Merge pull request #1267 from ueokande/move-to-jest
Move to Jest
Diffstat (limited to 'e2e/command_quit.test.ts')
-rw-r--r-- | e2e/command_quit.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/command_quit.test.ts b/e2e/command_quit.test.ts index d59abfc..10706aa 100644 --- a/e2e/command_quit.test.ts +++ b/e2e/command_quit.test.ts @@ -13,7 +13,7 @@ describe("quit/quitall command test", () => { let webdriver: WebDriver; let browser: any; - before(async () => { + beforeAll(async () => { lanthan = await Builder.forBrowser("firefox") .spyAddon(path.join(__dirname, "..")) .build(); @@ -22,7 +22,7 @@ describe("quit/quitall command test", () => { await server.start(); }); - after(async () => { + afterAll(async () => { await server.stop(); if (lanthan) { await lanthan.quit(); |