我正在为我的 Rails 应用程序使用 Teaspoon 和 Jasmine 编写测试。在大多数情况下,我了解如何测试独立的 js 模块,但我不确定如何测试绑定到 DOM 就绪事件的模块,例如 JQuery 的$(document).ready()
.
理想情况下,我可以在需要 JS 文件之前设置一个固定装置,但如果我不把它require
作为第一条语句,那么它就会被忽略。
通常如何进行测试?
我本来想做类似的事情:
酷.js:
$(document).ready(function() {
$(".stuff").click(stuffClickHandler);
}
cool_spec.js:
fixture.load("fixture_with_stuffs.html");
//= require cool
describe("on ready", function() {
it("should bind handlers to all stuffs", function() {
// test stuffs for handlers
});
});
但这不起作用,因为如果//= require
出现在任何东西之后,它似乎不会加载 js。
即使我们把它最小化,比如$(document).ready(initFunction)
我们如何编写一个测试来确保initFunction
调用它而不在require
?