diff options
Diffstat (limited to 'e2e/command_buffer.test.ts')
-rw-r--r-- | e2e/command_buffer.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/command_buffer.test.ts b/e2e/command_buffer.test.ts index 114f4b4..e0aeda3 100644 --- a/e2e/command_buffer.test.ts +++ b/e2e/command_buffer.test.ts @@ -25,7 +25,7 @@ describe("buffer command test", () => { let webdriver: WebDriver; let browser: any; - before(async () => { + beforeAll(async () => { lanthan = await Builder.forBrowser("firefox") .spyAddon(path.join(__dirname, "..")) .build(); @@ -34,7 +34,7 @@ describe("buffer command test", () => { await server.start(); }); - after(async () => { + afterAll(async () => { await server.stop(); if (lanthan) { await lanthan.quit(); |