alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
16 lines (15 loc) • 422 B
TypeScript
import { ITest, ITestFixture } from "./_interfaces";
export declare class TestFixture implements ITestFixture {
fixture: {
[id: string]: (...args: Array<any>) => any;
};
ignored: boolean;
ignoreReason: string;
focussed: boolean;
description: string;
filePath: string;
private _tests;
get tests(): ITest[];
constructor(description: string);
addTest(test: ITest): void;
}