26 lines
510 B
TypeScript
26 lines
510 B
TypeScript
|
|
import { defineConfig, devices } from '@playwright/test';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: './e2e',
|
||
|
|
fullyParallel: false,
|
||
|
|
forbidOnly: !!process.env.CI,
|
||
|
|
retries: process.env.CI ? 2 : 0,
|
||
|
|
workers: 1,
|
||
|
|
reporter: 'html',
|
||
|
|
use: {
|
||
|
|
baseURL: 'http://localhost:4200',
|
||
|
|
trace: 'on-first-retry',
|
||
|
|
screenshot: 'only-on-failure',
|
||
|
|
},
|
||
|
|
projects: [
|
||
|
|
{
|
||
|
|
name: 'chromium',
|
||
|
|
use: { ...devices['Desktop Chrome'] },
|
||
|
|
},
|
||
|
|
],
|
||
|
|
timeout: 60000,
|
||
|
|
expect: {
|
||
|
|
timeout: 10000,
|
||
|
|
},
|
||
|
|
});
|