aboutsummaryrefslogtreecommitdiff
path: root/e2e
diff options
context:
space:
mode:
Diffstat (limited to 'e2e')
-rw-r--r--e2e/lib/Console.ts2
-rw-r--r--e2e/repeat_n_times.test.ts2
2 files changed, 1 insertions, 3 deletions
diff --git a/e2e/lib/Console.ts b/e2e/lib/Console.ts
index de61d66..2c128d1 100644
--- a/e2e/lib/Console.ts
+++ b/e2e/lib/Console.ts
@@ -63,7 +63,7 @@ export class Console {
for (const li of Array.from(items)) {
if (li.classList.contains("vimvixen-console-completion-title")) {
objs.push({ type: "title", text: li.textContent!.trim() });
- } else if ("vimvixen-console-completion-item") {
+ } else if (li.classList.contains("vimvixen-console-completion-item")) {
const highlight = li.classList.contains(
"vimvixen-completion-selected"
);
diff --git a/e2e/repeat_n_times.test.ts b/e2e/repeat_n_times.test.ts
index 303aa34..5a9b172 100644
--- a/e2e/repeat_n_times.test.ts
+++ b/e2e/repeat_n_times.test.ts
@@ -23,8 +23,6 @@ describe("tab test", () => {
webdriver = lanthan.getWebDriver();
browser = lanthan.getWebExtBrowser();
await server.start();
-
- browser = browser;
});
after(async () => {