Nock如何模拟放置请求

时间:2017-05-26 05:41:03

标签: put nock

我的真实代码如:

fetch(hostname+ '/api/save', {
method: "put",
credentials: "include",
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({a: 'b'})
})

nock like:

nock(hostname)
  .put('/api/save')
  .reply(200);

hostname包含端口,但它是测试中的随机端口。我检查了日志,真实网址和测试网址是一样的。但我不知道为什么它不匹配???

0 个答案:

没有答案