Aria / tests /playwright.config.js
banys89's picture
Upload 953 files
f338398 verified
import { defineConfig } from '@playwright/test';
export default defineConfig({
testMatch: '*.e2e.js',
use: {
baseURL: 'http://127.0.0.1:8000',
video: 'only-on-failure',
screenshot: 'only-on-failure',
},
workers: 4,
fullyParallel: true,
});