import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './tests', fullyParallel: true, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 4 : undefined, reporter: [ ['html', { outputFolder: 'playwright-report' }], ['junit', { outputFile: 'test-results/junit.xml' }], ], use: { baseURL: process.env.BASE_URL ?? 'http://localhost:8080', extraHTTPHeaders: { Accept: 'application/json', 'Content-Type': 'application/json', }, }, projects: [ { name: 'api', testMatch: 'tests/api/**/*.spec.ts', // Kein Browser nötig – reiner API-Test via request context }, { name: 'web-chromium', testMatch: 'tests/web/**/*.spec.ts', use: { browserName: 'chromium' }, }, ], });