1c1f25b5c6
* Backported `/tests` from `macros-2.0`. * Added `eslint-plugin-playwright` * Improve formatting --------- Co-authored-by: user <user@exmaple.com> Co-authored-by: Cohee <18619528+Cohee1207@users.noreply.github.com>
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
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,
|
|
});
|