mock-git
v2.0.0
Published
Mock any git command
Downloads
66
Readme
mock-git
Mock any git command
Useful for mocking tests that run git command, especially to fake edge cases and increase test coverage.
Install
$ npm install --save-dev mock-git
Usage
const mockGit = require('mock-git');
const log = 'mocking git bla!';
const unmock = await mockGit(`console.log('${log}')`, 'bla');
let actual = shell.exec('git bla').stdout;
t.is(log + '\n', actual);
actual = shell.exec('git').stdout;
t.not(log + '\n', actual);
unmock();
actual = shell.exec('git bla').stdout;
t.not(log + '\n', actual);
Checkout the tests for more details
API
mockGit(js, [command])
Returns a promise which resolves with an unmock function.
js
Type: string
Nodejs code.
command
Type: string
EG: 'commit'
.
If omitted, it will mock the git binary.
Related
- mock-bin - Mock any executable binary
License
MIT © Steve Mao