From ad5fb2696fc196b0150e0a95cec1f53fa70fe34f Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Thu, 17 Feb 2022 15:52:44 +0100 Subject: [PATCH] chore: retry complex errors test --- e2e/__tests__/complexItemsInErrors.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e2e/__tests__/complexItemsInErrors.ts b/e2e/__tests__/complexItemsInErrors.ts index c688ed0e988b..419afd0eef65 100644 --- a/e2e/__tests__/complexItemsInErrors.ts +++ b/e2e/__tests__/complexItemsInErrors.ts @@ -17,6 +17,9 @@ import {runContinuous} from '../runJest'; const tempDir = path.resolve(tmpdir(), 'complex-errors'); +// this is a tiny bit flaky +jest.retryTimes(3); + beforeEach(() => { createEmptyPackage(tempDir); });