我对Grunt相当新,并尝试使用grunt-protractor-coverage
插件运行自定义任务,但我收到错误
警告:找不到任务“未定义”。使用--force继续。
我的脚本如下。
module.exports = function(grunt) {
grunt.registerTask('test', 'Log some stuff.', function() {
console.log('Logging some stuff...');
});
grunt.initConfig({
instrument: {
files: 'server/**/*.js',
options: {
lazy: true,
basePath: "instrumented"
}
}
});
grunt.loadNpmTasks('grunt-protractor-coverage');
grunt.registerTask('instrument');
// Default task(s)
grunt.registerTask('default', ['instrument']);
};
答案 0 :(得分:0)
之前我遇到过这个问题,并通过更新grunt解决了这个问题。尝试是一个很好的第一步:
npm --global update grunt-cli