Skip to content

Instantly share code, notes, and snippets.

@mwurzberger
Last active January 5, 2016 18:41
Show Gist options
  • Save mwurzberger/85d5f9376dc42634d9a6 to your computer and use it in GitHub Desktop.
Save mwurzberger/85d5f9376dc42634d9a6 to your computer and use it in GitHub Desktop.
var original = myObj.funcName;
sinon.stub(myObj, 'funcName', function () {
console.log('stub for funcName');
original.apply(myObj, arguments);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment