core-utils
    Preparing search index...
    interface LlmTestEntry {
        annotations: { description?: string; type: string }[];
        attachments: TestAttachment[];
        attempts: AttemptResult[];
        durationMs: number;
        error?: TestError;
        errors: TestError[];
        flaky: boolean;
        id: string;
        location: TestLocation;
        network?: NetworkRequest[];
        project: string;
        retries: number;
        status: TestStatus;
        stderr: string;
        stdout: string;
        steps?: FlatStep[];
        tags: string[];
        timeline: TimelineEntry[];
        title: string;
    }
    Index

    Properties

    annotations: { description?: string; type: string }[]
    attachments: TestAttachment[]
    attempts: AttemptResult[]
    durationMs: number
    error?: TestError
    errors: TestError[]
    flaky: boolean
    id: string
    location: TestLocation
    network?: NetworkRequest[]
    project: string
    retries: number
    status: TestStatus
    stderr: string
    stdout: string
    steps?: FlatStep[]
    tags: string[]
    timeline: TimelineEntry[]
    title: string