aboutsummaryrefslogtreecommitdiff
path: root/e2e/options.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2021-09-26 17:22:54 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2021-09-27 12:30:19 +0900
commit9a0c283ae2ebb7321b8f46a97178e5e284b02da4 (patch)
tree9beae544969d829d8a358d3a3602378ea4bd9513 /e2e/options.test.ts
parente304581fb15eabb3a973d363a282ee7546561e01 (diff)
Move to jest on e2e test
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();
}