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.
在速度网站黄瓜上的示例中,显示了如何创建夹具代码,但代码似乎在服务器上运行。您如何创建客户端夹具代码?我想用存根替换 Date 对象。
创建一个 debugOnly 包,其中包含一个包含流星方法的客户端文件,然后仅使用client.execute(). 话虽如此,您可以在
client.execute()
client.execute(function() { Date = { now: function() {return 'someDate'} }; });