UNPKG

zora-node-reporter

Version:

A reporter for zora which targets nodejs environment

6 lines (5 loc) 473 B
import { AssertionResult, Message, Test } from 'zora'; export declare const map: (fn: Function) => (stream: AsyncIterable<Message<any>>) => AsyncGenerator<any, void, unknown>; export declare const flatten: (stream: AsyncIterable<Message<any>>) => AsyncGenerator<any, void, unknown>; export declare const isAssertionResult: (result: AssertionResult | Test) => result is AssertionResult; export declare const stringifySymbol: (key: string, value: Symbol) => string | Symbol;