Interface UntilOptions

interface UntilOptions {
    abortSignal?: AbortSignal;
    delay: number;
    ignoreError?: boolean;
}

Properties

abortSignal?: AbortSignal

An AbortSignal to trigger cancellation

delay: number

Milliseconds to wait before each test execution

ignoreError?: boolean

If true, test errors will not cause rejections

""