javascript性能测试框架
我目前正在为一个很大程度上依赖于 javascript 的大型 Web 应用程序实现模块观察者模式。我已经介绍了每个模块的单元测试,我发现这对于捕获 javascript 的任何问题非常有用。
我现在还想看看对我的 javascript 进行性能测试的可能性。有没有可用的框架可以为我的 javascript 文件设置性能测试?
I am currently implementing a module observer pattern to a large scale web application that has a large dependency on javascript. I have introduced unit testing of each of the modules which I find very beneficial in capturing any issues with my javascript.
I would now also like to look at the possibility of performance testing my javascript. Are there any frameworks available where I can set up performance test for my javascript files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我熟悉用于 JavaScript 性能测试的 jsperf 服务。它基于 benchmark.js 基准测试库。您可以根据您要查找的内容的详细信息来使用 use 。
I'm familiar with the jsperf service for javascript performance testing. It is based on the benchmark.js benchmarking library. You could use use either depending upon the details of what you're looking for.