UNPKG

@n8n/n8n-benchmark

Version:

Cli for running benchmark tests for n8n

18 lines (17 loc) 410 B
import convict from 'convict'; export type Config = ReturnType<typeof loadConfig>; export declare function loadConfig(): convict.Config<{ testScenariosPath: string; n8n: { baseUrl: string; user: { email: string; password: string; }; }; scenarioNamePrefix: string; k6: { executablePath: string; apiToken: undefined; }; }>;