UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

14 lines (13 loc) 317 B
import { ITest } from "./test.i"; export interface ITestFixture { fixture: { [id: string]: (...args: Array<any>) => any; }; ignored: boolean; ignoreReason: string; focussed: boolean; tests: Array<ITest>; description: string; filePath: string; addTest(test: ITest): void; }