This commit is contained in:
Bethany
2023-09-06 08:11:26 -07:00
parent 400d7a5357
commit e8f2199348
15 changed files with 65 additions and 100 deletions

View File

@@ -29,9 +29,8 @@ describe('Utils', () => {
expect(retryWaitTime0).toEqual(getInitialRetryIntervalInMilliseconds())
const testMinMaxRange = (retryCount: number): void => {
const retryWaitTime = utils.getExponentialRetryTimeInMilliseconds(
retryCount
)
const retryWaitTime =
utils.getExponentialRetryTimeInMilliseconds(retryCount)
const minRange =
getInitialRetryIntervalInMilliseconds() *
getRetryMultiplier() *