Files
payloadcms/test/playwright.config.ts
2024-03-19 11:31:50 -04:00

18 lines
409 B
TypeScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
// Look for test files in the "test" directory, relative to this configuration file
testDir: '',
testMatch: '*e2e.spec.ts',
timeout: 180000, // 3 minutes
use: {
screenshot: 'only-on-failure',
trace: 'retain-on-failure',
video: 'retain-on-failure',
},
expect: {
timeout: 45000,
},
workers: 16,
})