0

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

1 回答 1

0

我确实从另一个来源复制了 OPA5 规范。由于我写了一套全新的,上面的错误无法复制。

于 2015-04-15T09:02:30.713 回答