UNPKG

oral-ts

Version:

a testing framework for typescript

16 lines (15 loc) 446 B
import { argsReturn, config } from "./global"; import { TestRunner } from "./utils/testRunner"; export declare class Oral { args: argsReturn; config: config; allTestFiles: Set<string>; testRunner: TestRunner; constructor(args: argsReturn); RunAllTests(): void; CollectAllTestFiles(): Set<string>; finalConfig(): config; beforeAllTest(): void; watcher(): void; getFile(fileName: string): Set<string>; }