我正在使用 Grunt 为 SAPUI5 应用程序运行 Qunit 测试。这是我的 Gruntfile.js
module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-contrib-qunit");
grunt.initConfig({
qunit: {
all: ["OpaMatchers.html"]
}
});
};
当我的所有(当前两个)规范都通过时,我得到了预期的输出
.OK
>> 2 assertions passed (11606ms)
但是,如果只有一个失败,我会得到:
>> PhantomJS timed out, possibly due to a missing QUnit start()
Warning: 1/1 assertions failed (0ms) Use --force to continue.