Files
tab-bot/apps/web/playwright.config.ts
T
2026-09-06 19:10:40 -04:00

15 lines
411 B
TypeScript

import { defineConfig, devices } from '@playwright/test'
export default defineConfig({
testDir: './e2e',
fullyParallel: true,
use: { baseURL: 'http://127.0.0.1:5173', trace: 'on-first-retry' },
webServer: {
command: 'pnpm dev',
url: 'http://127.0.0.1:5173',
reuseExistingServer: true,
timeout: 120_000,
},
projects: [{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }],
})