UNPKG

tehanu-repo-coco

Version:

Reports the test progress of tests written with tehanu on the console with colours if the terminal supports them.

13 lines (11 loc) 360 B
export interface Test { readonly name: string } export function start(): void export function startSuite(name: string, tests: Test[]): void export function ok(test: Test): void export function fail(test: Test, err: Error): void export function bail(): void export function skip(test: Test): void export function endSuite(): void export function end(): void