2016-03-17 77 views
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']); 
}; 

回答

0

變化grunt.loadTasksgrunt.loadNpmTasks

這應該可以解決您的錯誤。

有關更多信息,請參見Grunt docs

+0

謝謝......現在它正在工作..很愚蠢的懷疑。 –

相關問題