Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 0b17714

Browse files
authored
Merge pull request #1387 from skazancev/skazancev/using-apiary-key-from-yml
fix: using "apiaryApiKey" and "apiaryApiName" from dredd.yml config
2 parents 85a26b1 + 24b5a40 commit 0b17714

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/CLI.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,11 @@ ${packageData.name} v${packageData.version} \
331331
if (!cliConfig.path) { cliConfig.path = []; }
332332
cliConfig.path.push(this.argv._[0]);
333333

334-
cliConfig.custom = this.custom;
334+
// Merge "this.custom" which is an input of CLI constructor
335+
// (used for internal testing), and "cliConfig" which is a result
336+
// of merge upon "argv". Otherwise "custom" key from "dredd.yml"
337+
// is always overridden by "this.custom".
338+
cliConfig.custom = R.mergeDeepRight(this.custom, cliConfig.custom || {});
335339

336340
return cliConfig;
337341
}

0 commit comments

Comments
 (0)