User should be able to rebook a cancelled timeslot (#2483)

Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
This commit is contained in:
Hariom Balhara 2022-04-14 20:31:38 +05:30 committed by GitHub
parent cfbf419f57
commit d1b063d59d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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