Blame Raw
· · · 12 lines (285 B)
0 contributors
1import { defineConfig } from '@playwright/test';
2
3export default defineConfig({
4 testMatch: '*.e2e.js',
5 use: {
6 baseURL: 'http://127.0.0.1:8000',
7 video: 'only-on-failure',
8 screenshot: 'only-on-failure',
9 },
10 workers: 4,
11 fullyParallel: true,
12});