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) 223 B
declare type Callback = () => void; declare type Params = { nb: number; }; export declare function distribution(): { (gremlins: (() => void)[], params: Params, done: Callback): void; stop(): void; }; export {};