UNPKG

gremlins-ts

Version:

A monkey testing library written in JavaScript, for Node.js and the browser. Use it to check the robustness of web applications by unleashing a horde of undisciplined gremlins.

10 lines (9 loc) 248 B
declare type Callback = () => void; declare type Params = { nb: number; }; export declare function allTogether(): { (gremlins: (() => void)[], params?: Params | undefined, done?: Callback | undefined): void; stop(): void; }; export {};