没有使用grunt-qunit-junit执行测试

时间:2013-08-19 14:49:52

标签: junit gruntjs

我按照本指南从我的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');        
};

其中all_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)?

1 个答案:

答案 0 :(得分:1)

README声明你应该执行qunit_junit和qunit任务:http://github.com/sbrandwoo/grunt-qunit-junit#usage-examples

例如:grunt.registerTask('test', ['qunit_junit', 'qunit']);