Files
hpc/web/playwright.config.ts
2026-04-20 10:40:05 +08:00

15 lines
314 B
TypeScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: './tests',
timeout: 30000,
retries: 0,
use: {
baseURL: 'http://localhost:5173',
headless: true,
launchOptions: {
executablePath: process.env.CHROME_PATH || '/opt/google/chrome/chrome',
},
},
})