import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './e2e', testIgnore: /(?:lekiwi.*|mobile|website.*|builtinRobots)\.spec\.ts/, timeout: 120_000, use: { baseURL: 'http://127.0.0.1:4173' }, webServer: [ { command: 'npm run preview --prefix .. -- --host 127.0.0.1', url: 'http://127.0.0.1:4173', reuseExistingServer: true, }, { // Synthetic real-WASM bridge fixture is intentionally not in the production bundle. command: 'npm run dev --prefix .. -- --host 127.0.0.1 --port 4174 --strictPort', url: 'http://127.0.0.1:4174', reuseExistingServer: false, }, ], });