feat(v2): complete v2 reimplementation

This commit is contained in:
2026-07-31 13:33:39 +02:00
parent 396219e776
commit bd107d6a30
137 changed files with 20737 additions and 155 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
use: {
baseURL: "http://127.0.0.1:4173",
launchOptions: { executablePath: "/usr/sbin/chromium" },
},
webServer: {
command: "npm run dev -- --host 127.0.0.1 --port 4173",
port: 4173,
reuseExistingServer: false,
},
});