UNPKG

arrange-act-assert

Version:

The lightweight "Act-Arrange-Assert" oriented testing framework

6 lines (5 loc) 259 B
import { TestOptions } from "../testRunner/testRunner"; export type SpawnTestFileOptions = { prefix: string[]; } & TestOptions; export declare function spawnTestFile(path: string, options: SpawnTestFileOptions, cb: (msg: unknown) => void): Promise<void>;