0
雖然通過咕嚕mochaTest我收到此錯誤運行我的代碼:警告:任務 「mochatest」 找不到
Warning: Task "mochaTest" not found. Use --force to continue.
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']);
};
謝謝......現在它正在工作..很愚蠢的懷疑。 –