From 2a1ecf7f4d31f0550bcc32a991b35d06b6011a03 Mon Sep 17 00:00:00 2001 From: Rafael Dohms Date: Fri, 18 Sep 2015 16:37:18 +0200 Subject: [PATCH] Added new arguments for consolidateAll Added option to flip consolidateAll on --- lib/jasmine-node/cli.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/jasmine-node/cli.js b/lib/jasmine-node/cli.js index 0436599..974ac7b 100755 --- a/lib/jasmine-node/cli.js +++ b/lib/jasmine-node/cli.js @@ -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; @@ -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)'