@gatling.io/cli
Version:
Gatling JS is a JavaScript/TypeScript interface for the [Gatling load testing tool](https://gatling.io/).
12 lines (11 loc) • 344 B
TypeScript
import { SimulationFile } from "../simulations";
export interface BundleOptions {
sourcesFolder: string;
protoFolder: string;
bundleFile: string;
protoTargetFolder: string;
postman?: string;
simulations: SimulationFile[];
protocPath: string;
}
export declare const bundle: (options: BundleOptions) => Promise<void>;