24 lines
474 B
JavaScript
24 lines
474 B
JavaScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests",
|
|
testMatch: "accessibility.spec.mjs",
|
|
fullyParallel: false,
|
|
workers: 1,
|
|
retries: 0,
|
|
reporter: "line",
|
|
outputDir: "/tmp/docforge-playwright-accessibility",
|
|
timeout: 30_000,
|
|
expect: {
|
|
timeout: 5_000,
|
|
},
|
|
use: {
|
|
browserName: "chromium",
|
|
bypassCSP: true,
|
|
headless: true,
|
|
viewport: {
|
|
width: 1440,
|
|
height: 1000,
|
|
},
|
|
},
|
|
});
|