core3-utils

@wixc3/testing on Github

Home > @wixc3/testing > RetryOptions

RetryOptions type

The retry options for the chaiRetryPlugin.

{Object} RetryOptions {number} [timeout] - The maximum duration in milliseconds to wait before failing the retry operation. {number} [retries] - The number of times to retry the function before failing. {number} [delay] - The delay in milliseconds between retries.

Signature:

export type RetryOptions = {
    retries?: number;
    delay?: number;
    timeout?: number;
};