UNPKG

422 BTypeScriptView Raw
1import { ITest, ITestFixture } from "./_interfaces";
2export declare class TestFixture implements ITestFixture {
3 fixture: {
4 [id: string]: (...args: Array<any>) => any;
5 };
6 ignored: boolean;
7 ignoreReason: string;
8 focussed: boolean;
9 description: string;
10 filePath: string;
11 private _tests;
12 get tests(): ITest[];
13 constructor(description: string);
14 addTest(test: ITest): void;
15}