gruntjs - how to call the reporter task in grunt -


this grunt file task,

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   } } 

not able generate report tests.


Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -