fantasia-archive/playwright.config.ts

12 lines
275 B
TypeScript
Raw Permalink Normal View History

2023-09-04 08:48:18 +12:00
import { defineConfig } from '@playwright/test'
export default defineConfig({
workers: 3,
fullyParallel: false,
2023-09-04 08:48:18 +12:00
testMatch: '**/*playwright.@(spec|test).?(c|m)[jt]s?(x)',
reporter: [
['list'],
['json', { outputFile: 'test-results/test-results.json' }]
]
})