mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-18 14:44:21 +01:00
26 lines
515 B
TypeScript
26 lines
515 B
TypeScript
import { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: './tests/e2e',
|
|
timeout: 60000,
|
|
expect: {
|
|
timeout: 30000
|
|
},
|
|
fullyParallel: false,
|
|
workers: 1,
|
|
reporter: [
|
|
['html'],
|
|
['list']
|
|
],
|
|
use: {
|
|
actionTimeout: 30000,
|
|
navigationTimeout: 30000,
|
|
trace: 'on-first-retry',
|
|
video: 'retain-on-failure',
|
|
screenshot: 'only-on-failure'
|
|
},
|
|
outputDir: 'test-results',
|
|
preserveOutput: 'failures-only'
|
|
};
|
|
|
|
export default config; |