我的测试可能如下所示:
module("some module");
test("test A", ...);
test("test B", ...);
module("other module");
test("test C", ...);
test("test D", ...);
QUnit的输出将如下所示
1. test A (0, 0, 0)
2. test B (0, 0, 0)
3. test C (0, 0, 0)
4. test D (0, 0, 0)
是否可以让QUnit输出模块名称? 我很想拥有:
some module
1. test A (0, 0, 0)
2. test B (0, 0, 0)
other module
3. test C (0, 0, 0)
4. test D (0, 0, 0)
答案 0 :(得分:4)
根据QUnit documentation,模块开始(和结束)有一个回调,此时你可以修改DOM。
QUnit.moduleStart = function(name) {
var tests = document.getElementById("qunit-tests");
if ( tests ) {
var mod = document.createElement("h2");
mod.innerHTML = name;
tests.appendChild( mod );
}
};
把东西放在列表中间是一种顽皮的DOM明智,但它似乎有效,至少在FireFox中。
答案 1 :(得分:0)
Justin Love的解决方案对我不起作用,但您可以在测试后插入以下JQuery Javascript以获得相同的预期结果:
QUnit.done(function( details )
{
$("#qunit-tests > li ") //the test rows
.each(function(index, Element){
var moduleName = $(".module-name", this).text();
if (moduleName !== $(".module-name", this.previousSibling).text())
{
$(this).before( //prepend header to it
function(){
return "<h3 class='module-header'>" + moduleName + "</h3>"
;})
}
});
});