mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 21:53:41 +00:00
17 lines
334 B
TypeScript
17 lines
334 B
TypeScript
import { defineConfig } from '@playwright/test'
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
timeout: 30_000,
|
|
retries: 1,
|
|
use: {
|
|
baseURL: 'http://localhost:5173',
|
|
headless: true,
|
|
screenshot: 'only-on-failure',
|
|
},
|
|
webServer: {
|
|
command: 'pnpm dev',
|
|
port: 5173,
|
|
reuseExistingServer: true,
|
|
},
|
|
})
|