在我的测试中,我试图拦截由request/request
. 但它不起作用。当我使用http.request()
nock 时效果很好。
这是一个例子:
it('A test case', function() {
nock('http://www.google.com')
.get('/')
.reply(200, { response: 'Hello from Nock!' });
request('http://www.google.com/', function(err, res, body) {
console.log(body); // It displays the actual response :(
});
});
有什么见解吗?!
编辑:
毕竟,这是一个与代理相关的问题。