mirror of https://github.com/kern/filepizza
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.
16 lines
385 B
TypeScript
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',
|
|
},
|
|
})
|