feature: Initial MVP

This commit is contained in:
Keith Solomon
2026-04-05 16:20:39 -05:00
parent 3af0b9cd0f
commit 812e5c2f2a
60 changed files with 5917 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
// @ts-check
const { defineConfig } = require('@playwright/test');
module.exports = defineConfig({
testDir: './tests/e2e',
fullyParallel: true,
reporter: 'list',
use: {
baseURL: 'http://127.0.0.1:8101',
trace: 'on-first-retry',
},
webServer: {
command: 'php -S 127.0.0.1:8101 -t public',
url: 'http://127.0.0.1:8101',
reuseExistingServer: true,
timeout: 30000,
},
});