Skip to content

Instantly share code, notes, and snippets.

@notthetup
Created February 24, 2015 07:28
Show Gist options
  • Save notthetup/ac5fc11792105fa8e047 to your computer and use it in GitHub Desktop.
Save notthetup/ac5fc11792105fa8e047 to your computer and use it in GitHub Desktop.
How to stub this?
var DP = require('dependentModule');
function MyModule (){
var dp = new DP();
this.someFunction = function(){
dp.dependentFunction();
}
}
module.exports = myModule
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment