From b657b06415a05116c5dd51d71400e5aa88a4b62b Mon Sep 17 00:00:00 2001 From: krassowski <5832902+krassowski@users.noreply.github.com> Date: Mon, 29 Jan 2024 21:37:45 +0000 Subject: [PATCH] Enable test retires on CI --- ui-tests/playwright.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui-tests/playwright.config.js b/ui-tests/playwright.config.js index e115377..94da352 100644 --- a/ui-tests/playwright.config.js +++ b/ui-tests/playwright.config.js @@ -11,4 +11,5 @@ module.exports = { timeout: 120 * 1000, reuseExistingServer: !process.env.CI, }, + retries: process.env.CI ? 1 : 0 };