import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './tests', fullyParallel: true, retries: 0, use: { baseURL: 'http://localhost:5173', }, webServer: [ { command: 'pnpm --filter @wursor/api start', url: 'http://localhost:3000/health', reuseExistingServer: !process.env.CI, }, { command: 'pnpm --filter @wursor/web dev', url: 'http://localhost:5173', reuseExistingServer: !process.env.CI, }, ], });