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 0e7096f commit 1cc9a41Copy full SHA for 1cc9a41
scripts/utils/rewireJestConfig.js
@@ -22,7 +22,7 @@ module.exports = (config) => {
22
config[key] = overrides[key].concat(config[key]);
23
}
24
else if(typeof overrides[key] === 'object') {
25
- config[key] = Object.assign({}, overrides[key], config[key]);
+ config[key] = Object.assign({}, config[key], overrides[key]);
26
27
} else {
28
config[key] = overrides[key];
0 commit comments