15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
import { PlaywrightTestConfig } from '@playwright/test'
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: './tests/e2e',
|
|
retries: 0,
|
|
globalTimeout: 350000,
|
|
use: {
|
|
screenshot: 'only-on-failure',
|
|
video: 'retain-on-failure',
|
|
trace: 'retain-on-failure',
|
|
},
|
|
// reporter: [['html', { outputFolder: './playwright-report' }]],
|
|
}
|
|
export default config
|