0a054606fe
Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import { defineConfig } from '@playwright/test'
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
timeout: 180_000,
|
|
workers: 1,
|
|
globalSetup: './e2e/global-setup.ts',
|
|
use: {
|
|
trace: 'on-first-retry'
|
|
}
|
|
})
|