Grunt Qunit-Tests - 仅当断言失败时:PhantomJS超时,可能是由于缺少QUnit start()调用

时间:2015-04-09 14:13:51

标签: gruntjs phantomjs sapui5 qunit grunt-contrib-qunit

我正在使用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.

1 个答案:

答案 0 :(得分:0)

我确实从其他来源复制了OPA5规格。由于我遇到了一组全新的错误,因此上述错误无法复制。