// @ts-check const { defineConfig } = require('@playwright/test'); module.exports = defineConfig({ testDir: './tests/e2e', fullyParallel: true, reporter: 'list', use: { baseURL: 'http://127.0.0.1:8101', trace: 'on-first-retry', }, webServer: { command: 'php -S 127.0.0.1:8101 -t public', url: 'http://127.0.0.1:8101', reuseExistingServer: true, timeout: 30000, }, });