import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './tests', timeout: 30000, use: { baseURL: 'http://localhost:3001', headless: true, screenshot: 'only-on-failure', }, projects: [{ name: 'chromium', use: { browserName: 'chromium' } }], reporter: [ ['list'], ['json', { outputFile: '/opt/task-team/test-results.json' }], ], });