警告:任务" mochatest"未找到

时间:2016-03-17 13:04:33

标签: gruntjs mocha

在通过grunt mochaTest运行我的代码时,我收到此错误:

  

警告:任务" mochaTest"未找到。使用--force继续。

module.exports = function(grunt) {
    grunt.loadTasks('grunt-mocha-test');
    grunt.loadTasks('grunt-contrib-watch');
    grunt.initConfig({
        mochaTest: {
            test: {
                options: {
                    reporter: 'spec',
                    clearRequireCache: true
                },
                src: ['test/**/*.js']
            },
        },
        watch: {
            scripts: {
                files: ['**/*.js'],
                tasks: ['mochaTest']
            }
        }
    });
    grunt.registerTask('test', ['mochaTest']);
};

1 个答案:

答案 0 :(得分:0)

grunt.loadTasks更改为grunt.loadNpmTasks

那应该可以解决你的错误。

有关详细信息,请参阅Grunt docs