import { defineConfig } from '@playwright/test'; // Phase 1: Playwright is installed and configured but ships no specs. // First spec lands in Phase 2 (PIPE-07) — a smoke test that asserts the // "Tend the garden / Begin" gesture screen mounts and CORE-01 (game loads // in <5s) holds. This config exists so Plan 01 proves Playwright is wired. export default defineConfig({ testDir: 'tests/e2e', use: { baseURL: 'http://localhost:5173' }, webServer: { command: 'npm run dev', url: 'http://localhost:5173', reuseExistingServer: true, timeout: 30_000, }, });