🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
554 B
TypeScript
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
|
|
});
|