We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e6dd3c commit 7076aafCopy full SHA for 7076aaf
src/sauce.config.js
@@ -57,4 +57,10 @@ if ('HTTP_PROXY' in process.env && process.env.HTTP_PROXY !== '') {
57
overrides.use.launchOptions = { proxy, ignoreHTTPSErrors: true };
58
}
59
60
-module.exports = _.merge(userConfig, overrides);
+function arrMerger (objValue, srcValue) {
61
+ if (_.isArray(objValue)) {
62
+ return objValue.concat(srcValue);
63
+ }
64
+}
65
+
66
+module.exports = _.mergeWith(userConfig, overrides, arrMerger);
0 commit comments