Counters summarizing the outcomes of the evaluation run.

interface ResultCounts {
    errored: number;
    failed: number;
    passed: number;
    total: number;
}

Properties

errored: number

Number of output items that resulted in an error.

failed: number

Number of output items that failed to pass the evaluation.

passed: number

Number of output items that passed the evaluation.

total: number

Total number of executed output items.