diff --git a/.changeset/red-guests-perform.md b/.changeset/red-guests-perform.md new file mode 100644 index 00000000000..d27217a7e5a --- /dev/null +++ b/.changeset/red-guests-perform.md @@ -0,0 +1,5 @@ +--- +"saleor-dashboard": patch +--- + +Increase playwright maxFailures to 10 (how many allowed failures, if exceeding skip remaining tests) diff --git a/playwright.config.ts b/playwright.config.ts index 4343e998583..4f304108f3c 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -32,7 +32,7 @@ export default defineConfig({ ] : [["html"], ["list"]], expect: { timeout: 5000 }, - maxFailures: 2, + maxFailures: 10, timeout: 30000, use: { baseURL: env.BASE_URL || "",