Gruntjs 如何在grunt中调用报告者任务

Gruntjs 如何在grunt中调用报告者任务,gruntjs,Gruntjs,这是我的grunt文件任务 mochaProtractor: { options: { configFile: 'conf.js', port: 9999, singleRun: true, browsers: ['Chrome'], logLevel: 'OFF' }, files: ['test/Automative/*.js'], reporter:{ reporter:'html_table_reporter' ,

这是我的grunt文件任务

mochaProtractor: {
  options: {
    configFile: 'conf.js',
    port: 9999,
    singleRun: true,
    browsers: ['Chrome'],
    logLevel: 'OFF'
  },
  files: ['test/Automative/*.js'],
  reporter:{
    reporter:'html_table_reporter'  ,
    outputFile: 'report/report.html',
    timeout: 60000
  }
}
无法为我的测试生成报告