testplane
Version:
Tests framework based on mocha and wdio
26 lines (22 loc) • 927 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.configOverriding = void 0;
const configOverriding = (opts = {}) => {
const cliName = opts.cliName || "testplane";
return ` Overriding config
To override any config option use full option path converted to --kebab-case
Examples:
${cliName} --system-debug true
${cliName} --base-url http://example.com
${cliName} --browsers-firefox-sessions-per-browser 10
You can also use environment variables converted to snake_case with
${cliName}_ prefix
Examples:
${cliName}_system_debug=true ${cliName}
${cliName}_base_url=http://example.com ${cliName}
${cliName}_browsers_firefox_sessions_per_browser=10 ${cliName}
If both cli option and environment variable are used, cli option takes precedence
`;
};
exports.configOverriding = configOverriding;
//# sourceMappingURL=info.js.map