playwright-e2e-docker/templates/playwright.config.ts
Lilith fbc8e5772e 🔧 migrate to @lilith namespace, remove gitlab-ci.yml
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 01:35:26 -08:00

19 lines
554 B
TypeScript

/**
* Playwright Configuration Template
*
* Copy this to your project root and customize as needed.
* Or import createPlaywrightConfig from @lilith/playwright-e2e-docker
*/
import { createPlaywrightConfig } from '@lilith/playwright-e2e-docker';
export default createPlaywrightConfig({
testDir: './e2e',
timeout: 60000,
expectTimeout: 10000,
fullyParallel: false, // Sequential for Electron stability
retries: 2, // Retries in CI
reporter: 'html',
testMatch: /.*\.e2e\.ts/,
memoryPerWorker: 0.5, // ~500MB per Electron instance
});