langsmith
Version:
Client library to connect to the LangSmith Observability and Evaluation Platform.
6 lines (5 loc) • 311 B
TypeScript
export declare function printReporterTable(testSuiteName: string, results: {
title: string;
duration: number;
status: "pass" | "passed" | "fail" | "failed" | "pending" | "skipped";
}[], testStatus: "pass" | "skip" | "fail" | "passed" | "failed" | "skipped", failureMessage?: string): Promise<void>;