Merge branch 'main' into feat/api-keys

pull/2277/head
kodiakhq[bot] 2022-04-14 15:03:52 +00:00 committed by GitHub
commit 128e36f489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

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