This commit is contained in:
2025-08-17 13:21:01 +02:00
commit c988d51438
51 changed files with 5742 additions and 0 deletions

19
playwright.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import { defineConfig, devices } from '@playwright/test'
export default defineConfig({
timeout: 30000,
testDir: 'tests/e2e',
webServer: {
command: 'npm run dev',
port: 3000,
reuseExistingServer: !process.env.CI
},
use: {
baseURL: 'http://localhost:3000',
trace: 'on-first-retry',
viewport: { width: 1280, height: 800 }
},
projects: [
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }
]
})