WorkTracker/playwright.config.ts
Marco 08e573d63c
All checks were successful
Publish Container / publish (push) Successful in 5m35s
Removed auth
2026-04-20 14:11:18 +02:00

15 lines
No EOL
330 B
TypeScript

import { defineConfig } from '@playwright/test';
const baseURL = process.env.PLAYWRIGHT_BASE_URL ?? 'http://127.0.0.1:8002';
export default defineConfig({
testDir: './tests/playwright',
timeout: 30_000,
fullyParallel: true,
retries: 0,
use: {
baseURL,
trace: 'retain-on-failure'
},
reporter: [['list']]
});