@tapjs/reporter
Version:
Pretty test output reporters for tap
17 lines • 459 B
TypeScript
import { Base } from '@tapjs/core';
import { FC } from 'react';
export interface TestSummaryOpts {
/**
* The test being summarized
*/
test: Base;
/**
* Set to show assertion details.
*
* This is left unset in the log component, then set to true when
* summarizing at the end of the run.
*/
details?: boolean;
}
export declare const TestSummary: FC<TestSummaryOpts>;
//# sourceMappingURL=test-summary.d.ts.map