UNPKG

527 BTypeScriptView Raw
1import { TestOutcome } from "./test-outcome";
2import { IResultWithOutcome } from "./result-with-outcome.i";
3import { TestResults } from "./test-results";
4export declare class TestCaseResult implements IResultWithOutcome {
5 readonly testResults: TestResults;
6 readonly args: Array<any>;
7 readonly error: Error | null;
8 constructor(testResults: TestResults, args: Array<any>, error?: Error | null);
9 get logs(): import("../maintenance/log").ILog[];
10 get outcome(): TestOutcome;
11 get description(): string;
12}