🐛 Fix login/registration flow (#1688)

This commit is contained in:
Luke Vella 2025-04-24 11:49:24 +01:00 committed by GitHub
parent d6c6cc47d3
commit b100c6274e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 16 additions and 8 deletions

View file

@ -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");
});