Files
rfc-app/e2e/playwright.config.js
T
2026-06-03 22:45:13 -07:00

13 lines
277 B
JavaScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: '.',
timeout: 30_000,
expect: { timeout: 10_000 },
use: {
baseURL: process.env.BASE_URL || 'http://localhost:8080',
trace: 'on-first-retry',
},
reporter: [['list']],
})