From d666baa953428ca52b843d15fe72150f16d56979 Mon Sep 17 00:00:00 2001 From: Chris Wilkinson Date: Mon, 2 Aug 2021 16:14:55 +0100 Subject: [PATCH] test(integration): allow retries The integration tests seem to have nondeterministic failures regarding antialiasing; this allows the test runner to retry 3 times to reduce the number of failed builds. Refs #388, https://github.com/microsoft/playwright/issues/7548 --- integration/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/playwright.config.ts b/integration/playwright.config.ts index cfbfa2bb..f68a7f4a 100644 --- a/integration/playwright.config.ts +++ b/integration/playwright.config.ts @@ -6,6 +6,7 @@ const config: PlaywrightTestConfig = { headless: true, screenshot: 'only-on-failure', }, + retries: 3, projects: [ { name: 'Desktop Chrome',