first commit

This commit is contained in:
mdares
2026-04-07 08:54:41 -06:00
commit 3d1a8ba07e
92 changed files with 15392 additions and 0 deletions

15
playwright.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./tests/e2e",
timeout: 60_000,
use: {
baseURL: "http://127.0.0.1:3000",
headless: true
},
webServer: {
command: "npm run dev",
port: 3000,
reuseExistingServer: !process.env.CI
}
});