This commit is contained in:
Opportunity
2019-09-30 20:02:11 +08:00
Unverified
parent 74d9ac9b05
commit 7b6710e12b
60 changed files with 9504 additions and 180 deletions
+12
View File
@@ -0,0 +1,12 @@
/**
* Exports the utilities `simple-git` depends upon to allow for mocking during a test
*/
module.exports = {
buffer: function () { return require('buffer').Buffer; },
childProcess: function () { return require('child_process'); },
exists: require('./exists')
};