BangSo/apps/desktop/e2e/playwright.config.ts

16 lines
314 B
TypeScript
Raw Normal View History

2026-09-01 16:51:19 +00:00
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",
},
});