(count: number = 2)
| 246 | * Call at module level (before describe blocks). |
| 247 | */ |
| 248 | export function configureTestRetries(count: number = 2): void { |
| 249 | if (process.env.CI && typeof jest !== "undefined" && jest.retryTimes) { |
| 250 | jest.retryTimes(count, { logErrorsBeforeRetry: true }); |
| 251 | } |
| 252 | } |
no outgoing calls
no test coverage detected