Skip to content

Instantly share code, notes, and snippets.

@pinalbhatt
Created May 18, 2015 20:33
Show Gist options
  • Save pinalbhatt/62da7f4ecabc3ee0734e to your computer and use it in GitHub Desktop.
Save pinalbhatt/62da7f4ecabc3ee0734e to your computer and use it in GitHub Desktop.
nock
nock("http://www.google.com")
.filteringPath(function(path){
return '/';
})
.get("/")
.reply(200, "this should work?");
request("http://www.google.com?value=bob", function(err, res, body) {
return console.log(body);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment