kizu
Version:
An easy-to-use, fast, and defensive Typescript/Javascript test runner designed to help you to write simple, readable, and maintainable tests.
6 lines (5 loc) • 395 B
TypeScript
import { TestResultsByFile, FinalResults } from './run';
import { TestResults } from './test';
export declare function printResultsByFile(resultsByFile: TestResultsByFile, showOnlyFailures?: boolean): void;
export declare function printFileResults(filename: string, tests: TestResults[], showOnlyFailures?: boolean): void;
export declare function printSummary(finalResults: FinalResults): void;