import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests', timeout: 30000, retries: 0, workers: 1, reporter: 'list', use: { baseURL: 'http://localhost:8080', headless: true, viewport: { width: 1400, height: 900 }, ignoreHTTPSErrors: true, }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], webServer: { command: 'echo "dev server already running"', url: 'http://localhost:8080', reuseExistingServer: true, timeout: 120000, }, });