diff options
Diffstat (limited to 'e2e/command_tabopen.test.ts')
-rw-r--r-- | e2e/command_tabopen.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/command_tabopen.test.ts b/e2e/command_tabopen.test.ts index 9807a03..0469a5e 100644 --- a/e2e/command_tabopen.test.ts +++ b/e2e/command_tabopen.test.ts @@ -18,7 +18,7 @@ describe("tabopen 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("tabopen command test", () => { ); }); - after(async () => { + afterAll(async () => { await server.stop(); if (lanthan) { await lanthan.quit(); |