first commit

This commit is contained in:
2026-07-21 16:50:58 +02:00
commit 256599626e
407 changed files with 30489 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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
}
});