Arize Phoenix TS
    Preparing search index...

    A single test outcome surfaced to the reporter / summary printer.

    interface TestResult {
        annotations: Annotation[];
        dryRun?: boolean;
        durationMs: number;
        error?: string;
        exampleId?: string;
        output?: unknown;
        repetitionNumber?: number;
        repetitions?: number;
        runId?: string;
        status: "failed" | "passed" | "skipped";
        suiteName: string;
        testName: string;
        traceId?: string;
    }
    Index

    Properties

    annotations: Annotation[]
    dryRun?: boolean

    True when this test ran local-only (not uploaded to Phoenix).

    durationMs: number
    error?: string
    exampleId?: string

    Phoenix dataset example id this run was scored against, when synced.

    output?: unknown
    repetitionNumber?: number

    1-based repetition index, when the test ran more than once.

    repetitions?: number

    Total repetitions configured for this test (≥ 1).

    runId?: string

    Phoenix experiment run id, when the run was uploaded.

    status: "failed" | "passed" | "skipped"
    suiteName: string
    testName: string
    traceId?: string

    OpenInference trace id for the task span, when the run was traced. Surfaced in the reporter's failure detail so an agent can pull the exact trace from Phoenix (e.g. px/GraphQL) to see what the task actually did.