* Moving to vitest * Rearranging test * Fixing prettier linting * Reverting launch.json * Adjustments * Merged with main and regenerated lockfile * Fixing tests for API * Yarn updated, docs is gone --------- Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: Alex van Andel <me@alexvanandel.com>
19 lines
681 B
TypeScript
19 lines
681 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("Inline Usage Snapshot", 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");
|
|
});
|