import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: 'tests/e2e', timeout: 60000, retries: 0, reporter: 'list', use: { baseURL: 'http://localhost:3333', headless: true, screenshot: 'only-on-failure', trace: 'off', }, projects: [ { name: 'chromium', use: { browserName: 'chromium' } }, ], });