UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

13 lines (12 loc) 445 B
import { GlobHelper, TestLoader } from "./"; import { ITestFixture } from "./_interfaces"; export declare class TestSet { static create(): TestSet; private _testLoader; private _globHelper; private _testFixtures; get testFixtures(): Array<ITestFixture>; constructor(testLoader: TestLoader, globHelper: GlobHelper); addTestsFromFiles(testsFileLocations: string | Array<string>): void; private _loadTestFixtures; }