14 lines
307 B
TypeScript
14 lines
307 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: './tests',
|
||
|
|
timeout: 60_000,
|
||
|
|
retries: 1,
|
||
|
|
workers: 2,
|
||
|
|
reporter: process.env.CI ? 'list' : 'html',
|
||
|
|
use: {
|
||
|
|
baseURL: process.env.BASE_URL || 'http://localhost:3000',
|
||
|
|
trace: 'retain-on-failure',
|
||
|
|
},
|
||
|
|
});
|