我正在尝试模拟条带化请求,但我遇到了困难。我在我的摩卡describe
块顶部做一些简单的事情,看起来像
describe('Billing call', function(){
var api = Nock('https://api.stripe.com').log(console.log);
// ... down here there's a call that uses a stripe api
});
只是看看它是否拦截了任何东西。但事实并非如此。我在任何地方都找不到这样的例子,而且我担心 Nock 不支持它,在这种情况下我需要找到一个更好的工具。
谁能帮我解决这个问题?
谢谢!