ci: drop Playwright workers to 1 for max WAF safety

This commit is contained in:
2026-04-27 17:00:37 +03:00
parent b0e9aafed2
commit 515bb5855f
+1 -1
View File
@@ -11,7 +11,7 @@ const isCI = !!process.env.CI;
export default defineConfig({
testDir: "tests/e2e",
timeout: 30000,
workers: isCI ? 2 : undefined,
workers: isCI ? 1 : undefined,
retries: isCI ? 2 : 0,
use: {
baseURL,