increase the retryNumber to 6

This commit is contained in:
Amin Yahyaabadi 2020-09-14 16:04:18 -05:00
parent 8dc7cfd90e
commit fd0718792b

View File

@ -116,7 +116,7 @@ function spawnTest(executablePath, testArguments, options, callback, testName, f
}
const retryNumber = 4 // the number of times a tests repeats
const retryNumber = 6 // the number of times a tests repeats
const retriedTests = new Map() // a cache of retried tests
// Retries the tests if it is timed out for a number of times. Fails the rest of the tests or those that are tried enough times.