fantasia-archive/playwright.config.ts
2023-09-03 22:48:18 +02:00

10 lines
237 B
TypeScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
testMatch: '**/*playwright.@(spec|test).?(c|m)[jt]s?(x)',
reporter: [
['list'],
['json', { outputFile: 'test-results/test-results.json' }]
]
})