/** * E2E test configuration. * Tests use vitest as runner + playwright-core for browser automation. * Run with: bun run test:e2e */ export const e2eConfig = { baseURL: 'http://localhost:4173', viewport: { width: 390, height: 844 }, colorScheme: 'dark' as const, screenshotDir: 'e2e/screenshots', projects: { 'mobile-chrome': { width: 412, height: 915 }, 'desktop-chrome': { width: 1280, height: 720 }, }, };