frontend/tests/browser.test.ts
2024-09-19 16:04:35 +02:00

10 lines
217 B
TypeScript

import { test } from "@playwright/test";
test("test browser", async ({ page }) => {
// point this to wherever you want
await page.goto("http://localhost:5173/");
// keep browser open
await page.pause();
});