19 lines
526 B
TypeScript
19 lines
526 B
TypeScript
|
|
import { defineConfig } from '@playwright/test'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: './tests/integration',
|
||
|
|
timeout: 30_000,
|
||
|
|
retries: 1,
|
||
|
|
workers: 1,
|
||
|
|
use: {
|
||
|
|
baseURL: process.env.BASE_URL || 'http://localhost:5365',
|
||
|
|
headless: true,
|
||
|
|
},
|
||
|
|
projects: [{ name: 'chromium', use: { browserName: 'chromium' } }],
|
||
|
|
webServer: {
|
||
|
|
command: `pnpm dev --port ${process.env.BASE_URL?.match(/:(\d+)/)?.[1] || '5365'}`,
|
||
|
|
url: process.env.BASE_URL || 'http://localhost:5365',
|
||
|
|
reuseExistingServer: true,
|
||
|
|
},
|
||
|
|
})
|