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.
2 parents 259e3e4 + 0845550 commit 190e13eCopy full SHA for 190e13e
lib/initData.js
@@ -55,7 +55,7 @@ module.exports = function(mocks, skipDefaults){
55
mocks = mocks || [];
56
57
if(!skipDefaults){
58
- mocks = mocks.concat(getDefaultKeys(mocksConfig));
+ mocks = getDefaultKeys(mocksConfig).concat(mocks);
59
}
60
61
for(var i = 0; i < mocks.length; i++){
@@ -106,4 +106,4 @@ module.exports.remove = function(mocks){
106
var callback = arguments[arguments.length - 1]
107
callback(JSON.stringify(true));
108
}, mocks);
109
-};
+};
0 commit comments