测试 JavaScript 的最佳方法是什么?
我正在构建几个 jQuery 插件,并且我认为了解一些测试我的代码的最佳实践以保证其稳定性会很有用。
我通常使用 Selenium 但这只是为了调试。
我想知道为我的代码进行一些实际测试(如 TDD、BDD、DDD)的最佳方法。
任何建议将不胜感激。
I'm building several jQuery plugin and going ahead I thought that will be useful to know some best practice for testing my code in order to be solid.
I usually use Selenium but this just for debugging.
I'd like to know the best way for doing some real test (like TDD, BDD, DDD) for my code.
Any suggestion will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 Jasmine https://github.com/pivotal/jasmine 并强烈推荐它。
我认为没有一个“最佳”框架来测试您的代码。我只知道你“应该”测试你的代码。话虽如此,只需找到您喜欢的测试/规范框架并进行测试即可!
我有时也会使用 https://github.com/webadvanced/jMoney 来测试少量代码或用于测试原型代码。它在控制台中显示结果,不需要任何设置或依赖文件。
如果您更喜欢 TDD,您可以尝试 QUnit http://docs.jquery.com/QUnit
I use Jasmine https://github.com/pivotal/jasmine and would highly recommend it.
I don't think there is a "best" framework for test your code. I just know that you "should" test your code. So with that said, just find a test/spec framework your like and get testing!
I also at times use https://github.com/webadvanced/jMoney for testing small bits of code or for testing prototype code. It displays results in the console and does not require any setup or dependent files.
If you are more of a TDD guy, you can try QUnit http://docs.jquery.com/QUnit