You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/playwright.config.ts

16 lines
385 B
TypeScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: './tests/e2e',
workers: 1, // Run tests serially to avoid WebRTC port conflicts
webServer: {
command: 'node .next/standalone/server.js',
url: 'http://localhost:3000',
timeout: 120 * 1000,
reuseExistingServer: true,
},
use: {
baseURL: 'http://localhost:3000',
},
})