UNPKG

@typed/test

Version:
8 lines (7 loc) 260 B
import { TestResult } from '../types'; export declare type TestStats = { readonly passing: number; readonly failing: number; readonly skipped: number; }; export declare function getTestStats(testResults: TestResult[], seed?: TestStats): TestStats;