在通过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']);
};