Files
calendar/apps/web/playwright/icons.e2e.ts
T

11 lines
258 B
TypeScript

import { expect } from "@playwright/test";
import { test } from "./lib/fixtures";
test("Icons render properly", async ({ page }, testInfo) => {
await page.goto("/icons");
await expect(page).toHaveScreenshot("icons.png", {
fullPage: true,
});
});