UNPKG

@servant/servant-jasmine-node

Version:

Servant testing module for jasmine tests running in node.

6 lines (5 loc) 293 B
import { TestsResults } from "./jasmine"; export type TestsProgress = TestsResults & { type: "ok" | "warn" | "fail"; }; export declare function tests(cwd: string | null, entry: string | null, files: Array<string>, progress: (progress: TestsProgress) => void): Promise<TestsProgress>;