From 0e0053bb6ff24f97d24ed6f6f75fdbee80c5a58a Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Thu, 24 Apr 2025 11:42:03 +0100 Subject: [PATCH] Fix integration test --- apps/web/tests/guest-to-user-migration.spec.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/web/tests/guest-to-user-migration.spec.ts b/apps/web/tests/guest-to-user-migration.spec.ts index 139f1fa0d..313fc0b50 100644 --- a/apps/web/tests/guest-to-user-migration.spec.ts +++ b/apps/web/tests/guest-to-user-migration.spec.ts @@ -41,10 +41,6 @@ test.describe.serial(() => { email: TEST_USER_EMAIL, }); - // Step 4: Navigate back to the poll - await page.getByRole("main").getByRole("link", { name: "Polls" }).click(); - await expect(page).toHaveURL(/polls/); - await page.click("text=Monthly Meetup"); await expect(page.getByTestId("poll-title")).toHaveText("Monthly Meetup"); });