Files
CPLv4.0/playwright/pages/indexTest.ts
2025-09-03 15:58:11 +02:00

6 lines
111 B
TypeScript

import { test } from "@playwright/test";
test("index page", async ({ page }) => {
await page.goto("/");
});