@sondr3/minitest
Version:
A low-feature, dependency-free and performant test runner inspired by Rust and Deno
14 lines • 426 B
TypeScript
import { TestFn } from "./test_fn.js";
export declare class TestRunner {
readonly name: string;
readonly fn: TestFn;
readonly ignore: boolean;
readonly only: boolean;
success: boolean;
error?: Error;
constructor(name: string, fn: TestFn, ignore: boolean, only: boolean);
run(): Promise<boolean>;
result(quiet?: boolean): void;
private report;
}
//# sourceMappingURL=test_runner.d.ts.map