Only retry Jest tests in CI mode (#12111)

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/28788/head^2
Michael Telatynski 2024-01-08 12:05:02 +00:00 committed by GitHub
parent 35e99d69d3
commit 896d890198
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -38,9 +38,11 @@ beforeEach(() => {
}); });
// Retry to work around our flaky app & tests // Retry to work around our flaky app & tests
if (process.env.CI) {
jest.retryTimes(2, { jest.retryTimes(2, {
logErrorsBeforeRetry: true, logErrorsBeforeRetry: true,
}); });
}
// Very carefully enable the mocks for everything else in // Very carefully enable the mocks for everything else in
// a specific order. We use this order to ensure we properly // a specific order. We use this order to ensure we properly