import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './tests', globalSetup: './tests/global-setup.ts', timeout: 60_000, retries: 1, workers: 1, use: { baseURL: 'http://localhost:5000', trace: 'on-first-retry', screenshot: 'only-on-failure', video: 'retain-on-failure', }, projects: [ { name: 'chromium', use: { browserName: 'chromium' }, }, ], reporter: [['html', { open: 'never' }], ['list']], });