| 12345678910111213 |
- import { defineConfig, devices } from '@playwright/test'
- export default defineConfig({
- testDir: '.',
- timeout: 60_000,
- use: {
- baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:5173',
- trace: 'retain-on-failure'
- },
- projects: [
- { name: 'chromium', use: { ...devices['Desktop Chrome'] } }
- ]
- })
|