I am struggling to stub methods coming from the simple-git library using Sinon. Here is my attempt:
sandbox.stub(git(), 'push').callsFake(() => Promise.resolve('pushed was called'));
But it got completely ignored. What am I missing here?
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I am struggling to stub methods coming from the simple-git library using Sinon. Here is my attempt:
sandbox.stub(git(), 'push').callsFake(() => Promise.resolve('pushed was called'));
But it got completely ignored. What am I missing here?