import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './tests', timeout: 60_000, expect: { timeout: 10_000 }, fullyParallel: false, retries: 0, workers: 1, reporter: 'html', use: { baseURL: 'http://front-user-submit.local', ignoreHTTPSErrors: true, screenshot: 'only-on-failure', trace: 'on-first-retry', }, projects: [ { name: 'chromium', use: { browserName: 'chromium' }, }, ], });