UNPKG

askui

Version:

Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on

20 lines (19 loc) 779 B
import { RetryStrategy } from './retry-strategy'; /** * FixedRetryStrategy implements a retry strategy that uses a constant delay for each retry attempt. */ export declare class FixedRetryStrategy implements RetryStrategy { baseDelayMs: number; retryCount: number; /** * @param baseDelayMs - The constant delay before each retry (default is 1000ms) * @param retryCount - The maximum number of retries (default is 3) */ constructor(baseDelayMs?: number, retryCount?: number); /** * Returns the fixed delay for each retry attempt. * @param _attempt - The current retry attempt number (not used in this strategy) * @returns The fixed delay in milliseconds for the current attempt */ getDelay(_attempt: number): number; }