如何从 rake 运行 qunit 测试?
我希望能够发出命令 rake test:qunit
并运行我们的 qunit 测试。这可能吗?可以在不打开浏览器窗口的情况下完成吗?
I would like to be able to issue the command rake test:qunit
and to have our qunit tests run. Is this possible? Can it be done without opening a browser window?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 PhantomJS 集成到 rake 中。 PhantomJS 可以运行 QUnit 测试并提供有用的结果,因为它使用实际的浏览器引擎 (WebKit)。 PhantomJS 有一个集成 QUnit 的示例。
You could integrate PhantomJS into rake. PhantomJS can run QUnit tests and provides useful results, as its using an actual browser engine (WebKit). PhantomJS has an example on integrating QUnit.
这看起来很有希望:https://github.com/jodosha/hanoi
This looks promising: https://github.com/jodosha/hanoi