companion/@tooling/e2e/playwright.config.ts
Claude Code 49e7d5d4b7 chore(tooling): 🔧 Update build and linting tooling configurations
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-02 21:44:55 -07:00

17 lines
473 B
TypeScript

import { createPlaywrightConfig } from '@lilith/playwright-e2e-docker';
export default createPlaywrightConfig({
testDir: './e2e',
appName: 'companion-web',
devicePreset: 'mobile',
fullyParallel: true,
retries: 1,
baseURL: 'http://localhost:5850',
webServer: {
// Run from monorepo root (two levels up from @tooling/e2e)
command: 'pnpm -C ../.. --filter @companion/web dev',
port: 5850,
reuseExistingServer: true,
timeout: 60000,
},
});