playwright.config.ts 230 B

1234567891011
  1. import { defineConfig } from '@playwright/test'
  2. export default defineConfig({
  3. testDir: './tests',
  4. timeout: 120_000,
  5. retries: 0,
  6. workers: 1,
  7. use: {
  8. baseURL: process.env.E2E_BASE_URL ?? 'http://127.0.0.1:8080'
  9. }
  10. })