From d616bc09c9ee36b44ae01ae0505ea8ebf51e5cf9 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 27 Aug 2025 18:55:52 +0300 Subject: [PATCH] chore(e2e): remove test that is no longer relevant --- apps/server-e2e/src/help.spec.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/apps/server-e2e/src/help.spec.ts b/apps/server-e2e/src/help.spec.ts index e3a316a83..0ac285a67 100644 --- a/apps/server-e2e/src/help.spec.ts +++ b/apps/server-e2e/src/help.spec.ts @@ -11,18 +11,6 @@ test("Help popup", async ({ page, context }) => { await expect(page.locator(".help-cards")).toBeVisible(); }); -test("Complete help in search", async ({ page, context }) => { - const app = new App(page, context); - await app.goto(); - - await app.launcherBar.locator(".bx-search").first().click(); - await app.currentNoteSplit.locator(".search-settings .bx-help-circle").click(); - const popupPromise = page.waitForEvent("popup"); - await page.getByRole("link", { name: "complete help on search syntax" }).click(); - const popup = await popupPromise; - expect(popup.url()).toBe("https://triliumnext.github.io/Docs/Wiki/search.html"); -}); - test("In-app-help works in English", async ({ page, context }) => { const app = new App(page, context); await app.goto();