Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来指定每个 mocha 测试将调用哪个nock请求。问题是我有大约 50 个 nock 请求,所有这些请求都具有相同的确切 url(发布数据不同),这使得在 mocha中使用skip()和使用非常痛苦。only()我正在考虑使用标题来区分。有更好的选择吗?
skip()
only()
如果您要求nock进行单独的测试,您可以为该测试重复使用 URL。如果它是相同的 URL,您也可以将其设置为变量以保存一些输入。
nock
var url = "http://example.com"; it("should test something", function () { nock(url).post; }); it("should test another thing", function () { nock(url).post; });