Wipe my cal e2e fixes (#3509)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>V2-updates
parent
e395c9297d
commit
c03ca5549f
|
@ -3,7 +3,7 @@ import { expect } from "@playwright/test";
|
||||||
import dayjs from "@calcom/dayjs";
|
import dayjs from "@calcom/dayjs";
|
||||||
import prisma from "@calcom/prisma";
|
import prisma from "@calcom/prisma";
|
||||||
|
|
||||||
import { test } from "../../lib/fixtures";
|
import { test } from "./lib/fixtures";
|
||||||
|
|
||||||
test.describe.configure({ mode: "parallel" });
|
test.describe.configure({ mode: "parallel" });
|
||||||
|
|
||||||
|
@ -31,15 +31,6 @@ test.describe("Wipe my Cal App Test", () => {
|
||||||
dayjs().endOf("day").subtract(29, "minutes").toDate(),
|
dayjs().endOf("day").subtract(29, "minutes").toDate(),
|
||||||
dayjs().endOf("day").toDate()
|
dayjs().endOf("day").toDate()
|
||||||
);
|
);
|
||||||
await prisma.credential.create({
|
|
||||||
data: {
|
|
||||||
key: {},
|
|
||||||
type: "wipemycal_other",
|
|
||||||
userId: pro.id,
|
|
||||||
appId: "wipe-my-cal",
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
await bookings.create(pro.id, pro.username, eventType.id, {});
|
await bookings.create(pro.id, pro.username, eventType.id, {});
|
||||||
await bookings.create(pro.id, pro.username, eventType.id, {});
|
await bookings.create(pro.id, pro.username, eventType.id, {});
|
||||||
await pro.login();
|
await pro.login();
|
||||||
|
@ -51,7 +42,7 @@ test.describe("Wipe my Cal App Test", () => {
|
||||||
userId: pro.id,
|
userId: pro.id,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
expect(totalUserBookings?.length).toBe(3);
|
expect(totalUserBookings.length).toBe(3);
|
||||||
await page.locator("data-testid=wipe-today-button").click();
|
await page.locator("data-testid=wipe-today-button").click();
|
||||||
await page.locator("data-testid=send_request").click();
|
await page.locator("data-testid=send_request").click();
|
||||||
// eslint-disable-next-line playwright/no-wait-for-timeout
|
// eslint-disable-next-line playwright/no-wait-for-timeout
|
||||||
|
@ -63,7 +54,7 @@ test.describe("Wipe my Cal App Test", () => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
await expect(totalUserBookingsCancelled?.length).toBe(1);
|
expect(totalUserBookingsCancelled.length).toBe(1);
|
||||||
await users.deleteAll();
|
await users.deleteAll();
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue