Error thrown when a timeout occurs while waiting for a condition.

Hierarchy

Constructors

  • Creates a new TimeoutError instance.

    Parameters

    • OptionaltimeoutInMs: number

      The timeout duration in milliseconds, if provided.

    Returns TimeoutError

    throw new TimeoutError(5000);
    // Throws: Timed out after waiting for 5000 ms

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Optional override for formatting stack traces

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void