migration to vite/playwright

This commit is contained in:
JFH
2025-11-29 11:31:34 +01:00
parent babd3490c9
commit a37fbac749
186 changed files with 2699 additions and 13224 deletions

20
playwright.config.mjs Normal file
View File

@@ -0,0 +1,20 @@
import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: 'tests/e2e',
timeout: 60000,
expect: {
timeout: 10000
},
use: {
baseURL: process.env.PLAYWRIGHT_BASE_URL || 'http://localhost:8000',
headless: true
},
reporter: 'list',
webServer: {
command: 'npm run start:e2e',
url: 'http://localhost:8000/index.html',
reuseExistingServer: !process.env.CI,
timeout: 60000
}
})