From 0e9f1fc8a1b2b3f4ec783a1092796adda37613a0 Mon Sep 17 00:00:00 2001 From: MathieuG-P <40181755+Zagrios@users.noreply.github.com> Date: Sun, 24 Sep 2023 17:31:38 +0200 Subject: [PATCH] [chore] reduce nb retries --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 498a0cca..7f19a7c0 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -14,5 +14,5 @@ export default defineConfig({ testMatch: "**/*.test.ts", timeout: 200000, fullyParallel: true, - retries: 3, + retries: 2, });