Skip to content

Commit

Permalink
Added new arguments for consolidateAll
Browse files Browse the repository at this point in the history
Added option to flip consolidateAll on
  • Loading branch information
rdohms committed Sep 18, 2015
1 parent e936196 commit 27261ad
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/jasmine-node/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ while(args.length) {
case '--junitreport':
junitreport.report = true;
break;
case '--junitreport-consolidate-all':
junitreport.consolidateAll = true;
break;
case '--output':
junitreport.savePath = args.shift();
break;
Expand Down Expand Up @@ -264,6 +267,7 @@ function help(){
, ' --verbose - print extra information per each test run'
, ' --coffee - load coffee-script which allows execution .coffee files'
, ' --junitreport - export tests results as junitreport xml format'
, ' --junitreport-consolidate-all - consolidate all reports into a single file'
, ' --output - defines the output folder for junitreport files'
, ' --teamcity - converts all console output to teamcity custom test runner commands. (Normally auto detected.)'
, ' --growl - display test run summary in a growl notification (in addition to other outputs)'
Expand Down

0 comments on commit 27261ad

Please sign in to comment.