mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-04-19 05:18:42 -04:00
18 lines
355 B
TypeScript
18 lines
355 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: '.',
|
|
timeout: 60_000,
|
|
expect: { timeout: 10_000 },
|
|
fullyParallel: false,
|
|
retries: 0,
|
|
workers: 1,
|
|
reporter: 'list',
|
|
use: {
|
|
headless: process.env.HEADED !== '1',
|
|
screenshot: 'only-on-failure',
|
|
trace: 'retain-on-failure',
|
|
ignoreHTTPSErrors: true
|
|
}
|
|
});
|