Files
ben-to/playwright.config.ts
2026-07-21 16:50:58 +02:00

16 lines
325 B
TypeScript

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