Skip to content

Instantly share code, notes, and snippets.

@edwinvdgraaf
Last active February 13, 2016 17:12
Show Gist options
  • Save edwinvdgraaf/e669854764b31b945b90 to your computer and use it in GitHub Desktop.
Save edwinvdgraaf/e669854764b31b945b90 to your computer and use it in GitHub Desktop.
let normalB = require('b');
let A = {
init(url, B = normalB){
return B.fetch(url);
}
};
let A = require('a');
// In regular code
A.init('google.com');
// Under test
A.init('google.com', Bmock);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment