@bugbug-io/sdk
    Preparing search index...

    Interface ListTestRunsOptions

    interface ListTestRunsOptions {
        cursor?: string;
        pageSize?: number;
        ordering?: "-created" | "created" | "-started" | "started";
        startedAfter?: string;
        startedBefore?: string;
        status?:
            | "error"
            | "passed"
            | "failed"
            | "running"
            | "auto_retrying"
            | "stopped"
            | "queued"
            | "paused"
            | "skipped"
            | "recording"
            | "initialized";
        testId?: string;
        signal?: AbortSignal;
        timeout?: number;
        headers?: Record<string, string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cursor?: string
    pageSize?: number
    ordering?: "-created" | "created" | "-started" | "started"
    startedAfter?: string
    startedBefore?: string
    status?:
        | "error"
        | "passed"
        | "failed"
        | "running"
        | "auto_retrying"
        | "stopped"
        | "queued"
        | "paused"
        | "skipped"
        | "recording"
        | "initialized"
    testId?: string
    signal?: AbortSignal

    Abort signal for client-side cancellation. Throws CancellationError.

    timeout?: number

    Per-request timeout in milliseconds. Overrides BugBugConfig.timeout for this call only.

    headers?: Record<string, string>

    Per-request HTTP headers. These are merged first so the SDK's auth and User-Agent headers always win — supplying Authorization here will have no effect.