mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
7 lines
203 B
JavaScript
7 lines
203 B
JavaScript
// eslint-disable-next-line filenames/match-exported
|
|
const git = jest.requireActual('isomorphic-git');
|
|
const mock = jest.genMockFromModule('isomorphic-git');
|
|
|
|
git.push = mock.push;
|
|
module.exports = git;
|