0
我下面這個指南從我的JS測試生成JUnit輸出:與咕嚕-qunit-的JUnit執行任何測試
https://github.com/sbrandwoo/grunt-qunit-junit
我已經安裝了咕嚕-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');
};
其中all_tests.html
位於相同的目錄並列出所有my * test.js文件。但是當我運行時:
[email protected]:~/Test$ grunt qunit_junit
Running "qunit_junit" task
>> XML reports will be written to _build/test-reports
Done, without errors.
爲什麼測試沒有執行(文件夾_build/test-reports沒有創建)?
我不熟悉這個插件,但是,你應該執行這兩個README國' qunit_junit'和'qunit'任務:https://github.com/sbrandwoo/grunt-qunit-junit#usage-examples – badsyntax
就是這樣,我只需要添加'grunt.registerTask('test',['qunit_junit' ,'qunit']);' – u123
真棒:)我應該添加我的評論作爲答案嗎? – badsyntax