我的测试可能如下所示:
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)