addition of new dashboard

This commit is contained in:
2026-08-20 15:08:32 +00:00
parent 0622018d95
commit bf59249ed7
161 changed files with 13170 additions and 119 deletions

View File

@@ -0,0 +1,14 @@
import { defineConfig } from "@playwright/test";
// npm run test:e2e (needs `npx playwright install chromium` once).
export default defineConfig({
testDir: "./tests/e2e",
timeout: 30_000,
use: { baseURL: "http://localhost:4321" },
webServer: {
command: "npm run build && npm run preview -- --port 4321",
url: "http://localhost:4321",
reuseExistingServer: true,
timeout: 120_000,
},
});