import { defineConfig, devices } from '@playwright/test' // Playwright configuration for WrestleDesk e2e tests export default defineConfig({ testDir: './tests/playwright', testMatch: '**/*.spec.ts', fullyParallel: true, /* Do not auto-run web server; rely on local dev servers. You can run with: npx playwright test */ use: { baseURL: 'http://localhost:3000', screenshot: 'only-on-failure', video: 'retain-on-failure', }, timeout: 30000, })