Files
IronKanban/playwright.config.js
Keith Solomon 812e5c2f2a feature: Initial MVP
2026-04-05 16:20:39 -05:00

20 lines
408 B
JavaScript

// @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,
},
});