test(frontend): basic e2e testing framework

This commit is contained in:
2025-12-29 17:30:25 +01:00
parent ac75494f6d
commit 7dbc746242
8 changed files with 588 additions and 601 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'deno task build && deno task preview',
port: 4173
},
testDir: 'e2e'
});