Arize Phoenix TS
    Preparing search index...

    Run-time state attached via AsyncLocalStorage to each running test.

    interface RunState {
        annotations: Annotation[];
        dryRun: boolean;
        endTime?: Date;
        error?: string;
        logicalName: string;
        output?: unknown;
        outputSet: boolean;
        params: TestParams;
        repetitionNumber: number;
        runId?: string;
        runMetadata: KVMap;
        startTime: Date;
        suite: SuiteState;
        taskEndTime?: Date;
        testName: string;
        traceId?: string;
    }
    Index

    Properties

    annotations: Annotation[]
    dryRun: boolean

    When true, this run is local-only: no dataset example, no upload.

    endTime?: Date
    error?: string
    logicalName: string

    The logical test name; the key into registeredExamples.

    output?: unknown
    outputSet: boolean
    params: TestParams
    repetitionNumber: number

    1-based repetition index for this run.

    runId?: string
    runMetadata: KVMap

    Optional metadata accumulated during the test.

    startTime: Date
    suite: SuiteState
    taskEndTime?: Date

    End time for the task span/run, which may be before the test body ends.

    testName: string

    Runner-facing test name (may include a [rep i/N] suffix).

    traceId?: string