aboutsummaryrefslogtreecommitdiff
path: root/e2e/options.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'e2e/options.test.ts')
-rw-r--r--e2e/options.test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/e2e/options.test.ts b/e2e/options.test.ts
index 64f24be..c2b44d6 100644
--- a/e2e/options.test.ts
+++ b/e2e/options.test.ts
@@ -17,7 +17,7 @@ describe("options page", () => {
let webdriver: WebDriver;
let browser: any;
- before(async () => {
+ beforeAll(async () => {
lanthan = await Builder.forBrowser("firefox")
.spyAddon(path.join(__dirname, ".."))
.build();
@@ -27,7 +27,7 @@ describe("options page", () => {
await server.start();
});
- after(async () => {
+ afterAll(async () => {
if (lanthan) {
await lanthan.quit();
}