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.
我正在处理 javascript 客户端日志记录。我在 JavaScript 中有一个名为 WriteLog 的函数,它基本上向指定的服务器 URL 发布一条消息,并向 console.log、console.error 和 console.warn(如果可用)写入一条消息/异常。
我正在寻找参考如何为 WriteLog 函数编写 qunit 测试用例
任何建议
您应该使用存根或间谍函数并观察它是否已使用正确的参数调用。
签出 Sinon.js(以及特定于 Sinon.js 和 QUnit)