使用 Jasmine 测试 DOM 操作
我正在创建一个 JS 小部件,第一部分是使用 javascript 添加脚本,如下所示(来自谷歌分析的示例):
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
如何使用 jasmine 测试它(使用固定装置)?
I'm creating a JS widget and first part is to add script with javascript, something like this (example from google analytics):
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
How to test it with jasmine (using fixtures)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了在我的规范中设置 HTML 固定装置,我编写了 jasmine-fixture。有了它,你可以做这样的事情:
afterEach,它会在你之后清理。
对于 DOM 状态的期望,我使用 jasmine-jquery。它提供了大量的匹配器,如下所示:
For setting up HTML fixtures in my specs, I wrote jasmine-fixture. With it, you can do stuff like this:
And afterEach, it'll clean up after you.
For expectations about the state of the DOM, I use jasmine-jquery. It offers a ton of matchers like the one below:
我想您可以执行您的操作,然后检查第一个脚本标记上的 href,如下所示:
Jasmine 规范:
不过,有兴趣听到更好的方法。使用 Jasmine 检查 DOM 总是感觉有点古怪。
I suppose you could perform your action, then check the href on the first script tag like so:
Jasmine spec:
Would be interested in hearing a better method, though. Checking the DOM with Jasmine always feels a little hacky.
对于使用 Jasmine 进行大量 DOM 测试,您可以使用 Jasmine Headless WebKit(网络存档 2013/01)。
https://github.com/johnbintz/jasmine-headless-webkit
这个项目已经死了。你应该使用 Karma 来代替。我愿意。
(所有者存档于2020年6月16日)
For heavy DOM testing with Jasmine you can use Jasmine Headless WebKit (Web archive 2013/01).
https://github.com/johnbintz/jasmine-headless-webkit
This project is dead. You should use Karma instead. I do.
(archived by the owner on Jun 16, 2020)