From 37fb68ea8e1267991767f0751ca0075edf008049 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 15 Oct 2023 18:38:28 +0700 Subject: [PATCH] Update retry.ts --- test/retry.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/retry.ts b/test/retry.ts index edc72c13..8d143572 100644 --- a/test/retry.ts +++ b/test/retry.ts @@ -8,6 +8,7 @@ const fixture = 'fixture'; const defaultRetryCount = 2; const retryAfterOn413 = 2; const lastTried413access = Date.now(); + // We allow the tests to take more time on CI than locally, to reduce flakiness const allowedOffset = process.env.CI ? 1000 : 300;