16 lines
314 B
TypeScript
16 lines
314 B
TypeScript
|
|
import { defineConfig } from "@playwright/test";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
testDir: ".",
|
||
|
|
testMatch: "*.spec.ts",
|
||
|
|
fullyParallel: false,
|
||
|
|
workers: 1,
|
||
|
|
timeout: 30_000,
|
||
|
|
expect: { timeout: 5_000 },
|
||
|
|
reporter: "list",
|
||
|
|
use: {
|
||
|
|
screenshot: "only-on-failure",
|
||
|
|
trace: "retain-on-failure",
|
||
|
|
},
|
||
|
|
});
|