// playwright.config.js const { defineConfig, devices } = require('@playwright/test'); module.exports = defineConfig({ testDir: './tests', timeout: 30_000, retries: 0, reporter: 'list', use: { baseURL: process.env.APP_URL || 'http://localhost:9090', headless: true, }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] } }, ], });