nock library - how to match any url

I haven't used this before, but from reading the docs maybe this will help.

How about something like this:

var nock = require('nock');
var request = require ('request');

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);
});

We can use regexp too

nock("http://www.google.com")
   .get(/.*/)

Tags:

Node.Js