feat: unit tests for embed pages (#10014)

Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
pull/10140/head^2
Pradumn Kumar 2023-07-17 08:46:00 +05:30 committed by GitHub
parent 833459cabb
commit 17324e406c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,59 @@
import { expect } from "@playwright/test";
import { test } from "@calcom/web/playwright/lib/fixtures";
test.describe("Embed Pages", () => {
test("Event Type Page: should not have margin top on embed page", async ({ page }) => {
await page.goto("http://localhost:3000/free/30min/embed");
// Checks the margin from top by checking the distance between the div inside main from the viewport
const marginFromTop = await page.evaluate(() => {
const mainElement = document.querySelector("main");
const divElement = mainElement?.querySelector("div");
if (mainElement && divElement) {
// This returns the distance of the div element from the viewport
const divRect = divElement.getBoundingClientRect();
return divRect.top;
}
return null;
});
expect(marginFromTop).toBe(0);
});
test("Event Type Page: should have margin top on non embed page", async ({ page }) => {
await page.goto("http://localhost:3000/free/30min");
// Checks the margin from top by checking the distance between the div inside main from the viewport
const marginFromTop = await page.evaluate(() => {
const mainElement = document.querySelector("main");
const divElement = mainElement?.querySelector("div");
if (mainElement && divElement) {
// This returns the distance of the div element from the viewport
const divRect = divElement.getBoundingClientRect();
return divRect.top;
}
return null;
});
expect(marginFromTop).not.toBe(0);
});
test("should change to embed when window.name is changed to cal-embed=", async ({ page }) => {
await page.goto("http://localhost:3000/free/30min");
await page.evaluate(() => {
window.name = "cal-embed=";
});
await page.reload();
const isEmbed = await page.evaluate(() => {
return window?.isEmbed?.();
});
expect(isEmbed).toBe(true);
});
});