我的真实代码如下:
fetch(hostname+ '/api/save', {
method: "put",
credentials: "include",
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({a: 'b'})
})
诺克喜欢:
nock(hostname)
.put('/api/save')
.reply(200);
包含hostname
端口,但它是测试中的随机端口。我检查了日志,真实的url和测试的url是一样的。但是不知道为什么不匹配???