arbret/frontend/playwright.config.ts
2025-12-18 21:48:41 +01:00

14 lines
270 B
TypeScript

import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
webServer: {
command: "npm run dev",
url: "http://localhost:3000",
reuseExistingServer: true,
},
use: {
baseURL: "http://localhost:3000",
},
});