diff --git a/apps/web/playwright/booking-pages.test.ts b/apps/web/playwright/booking-pages.test.ts index 9ffcf471b2..6c54ab667f 100644 --- a/apps/web/playwright/booking-pages.test.ts +++ b/apps/web/playwright/booking-pages.test.ts @@ -125,7 +125,7 @@ test.describe("pro user", () => { }); }); - test("Can cancel the recently created booking", async ({ page }) => { + test("Can cancel the recently created booking and rebook the same timeslot", async ({ page }) => { await bookFirstEvent(page); await page.goto("/bookings/upcoming"); @@ -142,5 +142,7 @@ test.describe("pro user", () => { return url.pathname === "/cancel/success"; }, }); + await page.goto("/pro"); + await bookFirstEvent(page); }); });