Disabled jest retries by default

This commit is contained in:
jamelreid 2021-12-10 11:02:21 -05:00
parent b4d0bc0dab
commit ac83762aca
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
*/
const { E2E_RETRY_TIMES } = process.env;
const setupJestRetries = ( retries = 2 ) => {
const setupJestRetries = ( retries = 0 ) => {
const retryTimes = E2E_RETRY_TIMES ? E2E_RETRY_TIMES : retries;
jest.retryTimes( retryTimes );