Arize Phoenix TS
    Preparing search index...

    The serializable summary of one suite that the reporter renders. This is the payload written to and read from the artifact files in report-artifacts.ts, so it holds only plain data — no clients, tracers, or live state.

    interface SuiteSummary {
        acceptanceResults?: AcceptanceResult[];
        links: { label: string; url: string }[];
        name: string;
        results: TestResult[];
        setupError?: { message: string };
        trackingDisabled?: boolean;
        trackingDisabledReason?: string;
        uploadFailureCount?: number;
    }
    Index

    Properties

    acceptanceResults?: AcceptanceResult[]

    Aggregate acceptance results shown in the summary.

    links: { label: string; url: string }[]

    Phoenix UI links (dataset / experiment) printed at the end of the block.

    name: string

    Suite name (also the dataset / experiment name in Phoenix).

    results: TestResult[]

    Per-test outcomes shown in the summary.

    setupError?: { message: string }

    Setup failure that disabled tracking, reduced to its message for printing.

    trackingDisabled?: boolean

    True when the suite did not sync to Phoenix (dry run, disabled, or error).

    trackingDisabledReason?: string

    Human-readable reason tracking was disabled, when known.

    uploadFailureCount?: number

    Number of best-effort uploads (runs + annotations) that failed.