* Fix 2 Factor Auth * Add a sandbox to verify types of embed-react * Add fault types location * Fix type location again * Break types * Ensure that builds are done again when doing pbublish * Debug failure in CI * Make sure unit test files arent used by playwright * Fix embed-react test description * Update .github/workflows/e2e-embed-react.yml Co-authored-by: Omar López <zomars@me.com> * Remove unnecessary log --------- Co-authored-by: Alex van Andel <me@alexvanandel.com> Co-authored-by: Omar López <zomars@me.com>
25 lines
801 B
TypeScript
25 lines
801 B
TypeScript
import { expect } from "@playwright/test";
|
|
|
|
import { getEmbedIframe } from "@calcom/embed-core/playwright/lib/testUtils";
|
|
import { test } from "@calcom/web/playwright/lib/fixtures";
|
|
|
|
test.describe("Inline Embed", () => {
|
|
test("should verify that the iframe got created with correct URL", async ({
|
|
page,
|
|
getActionFiredDetails,
|
|
addEmbedListeners,
|
|
}) => {
|
|
//TODO: Do it with page.goto automatically
|
|
await addEmbedListeners("");
|
|
await page.goto("/");
|
|
const embedIframe = await getEmbedIframe({ page, pathname: "/pro" });
|
|
expect(embedIframe).toBeEmbedCalLink("", getActionFiredDetails, {
|
|
pathname: "/pro",
|
|
searchParams: {
|
|
theme: "dark",
|
|
},
|
|
});
|
|
// expect(await page.screenshot()).toMatchSnapshot("react-component-inline.png");
|
|
});
|
|
});
|