perf-insight
Version:
Performance benchmarking tool for NodeJS.
18 lines • 538 B
text/typescript
import type { PerfSuite } from './perfSuite.mjs';
export interface RunOptions {
repeat?: number | undefined;
timeout?: number | undefined;
suites?: string[] | undefined;
tests?: string[] | undefined;
}
export interface RunBenchmarkSuitesResult {
hadFailures: boolean;
numSuitesRun: number;
}
/**
*
* @param suiteNames
* @param options
*/
export declare function runBenchmarkSuites(suiteToRun?: (string | PerfSuite)[], options?: RunOptions): Promise<RunBenchmarkSuitesResult>;
//# sourceMappingURL=run.d.mts.map