diff --git a/apps/server-e2e/src/shared_notes.spec.ts b/apps/server-e2e/src/shared_notes.spec.ts index 106564474..a3ca3e0e8 100644 --- a/apps/server-e2e/src/shared_notes.spec.ts +++ b/apps/server-e2e/src/shared_notes.spec.ts @@ -8,11 +8,3 @@ test("Goes to share root", async ({ page, context }) => { await expect(page).toHaveTitle(noteTitle); await expect(page.locator("h1")).toHaveText(noteTitle); }); - -test("Goes to parent share root page", async ({ page, context }) => { - const app = new App(page, context); - await app.goto({ url: "/share/bKMn5EFv9KS2" }); - await expect(page.locator("h1")).toHaveText("Child note"); - await page.locator("#parentLink a").click(); - await page.waitForURL("/share/"); -});