WorkTracker/playwright.config.ts

15 lines
330 B
TypeScript
Raw Normal View History

2026-04-20 14:11:18 +02:00
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']]
});