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

12 lines
248 B
TypeScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: './tests/e2e',
webServer: {
command: 'node .next/standalone/server.js',
port: 3000,
timeout: 120 * 1000,
reuseExistingServer: true,
},
})