UNPKG

@typed/test

Version:
9 lines (8 loc) 472 B
import { Assertions } from '@typed/assertions'; import { Test } from '../types'; export { Assertions }; export declare function it(does: string, what: (assertions: Assertions, done: (error?: Error) => void) => any): Test; export declare namespace it { function only(does: string, what: (assertions: Assertions, done: (error?: Error) => void) => any): Test; function skip(does: string, what: (assertions: Assertions, done: (error?: Error) => void) => any): Test; }