我正在按照本指南从我的 js 测试中生成 junit 输出:
https://github.com/sbrandwoo/grunt-qunit-junit
我已将 grunt-qunit-junit 安装到我的本地测试项目中:
npm install grunt-contrib-qunit --save-dev
这是我的 Gruntfile.js:
module.exports = function(grunt) {
"use:strict";
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
qunit_junit: {
options: {
},
all: ["all_tests.html"]
},
})
grunt.loadNpmTasks('grunt-qunit-junit');
};
whereall_tests.html
位于同一目录中,并列出了我所有的 *test.js 文件。但是当我运行时:
user@ubuntu:~/Test$ grunt qunit_junit
Running "qunit_junit" task
>> XML reports will be written to _build/test-reports
Done, without errors.
为什么未执行测试(未创建文件夹 _build/test-reports)?