grunt-parallel-spec-runner
Advanced tools
Comparing version 0.3.14 to 0.3.15
{ | ||
"name": "grunt-parallel-spec-runner", | ||
"version": "0.3.14", | ||
"version": "0.3.15", | ||
"description": "Plugin used to configure and launch multiple spec ", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/RallySoftware/grunt-parallel-spec-runner.git", |
@@ -36,3 +36,3 @@ /* | ||
message += grunt.util.linefeed; | ||
grunt.log.write(message); | ||
grunt.log.write(message.replace('tests failed:','tests failed')); | ||
specRuner.summary.retry = true; | ||
@@ -202,3 +202,3 @@ retriesRequired = true; | ||
if(pat.test(msg)) { | ||
msg = msg.match(pat)[0]; | ||
msg = msg.match(pat)[0].replace('tests failed:', 'tests failed'); | ||
grunt.verbose.or.writeln((specRunner.file + ':' + msg).red); | ||
@@ -460,8 +460,5 @@ specRunner.summary.wins = +msg.match(/\d+/g)[1]; | ||
specRunner.writeSummary(); | ||
if(specRunner.Inconclusive){ | ||
grunt.log.error('Task failed due to '.red + 'inconclusive'.yellow + ' results, please try again.'.red); | ||
if(specRunner.Inconclusive || specRunner.hasFailures){ | ||
grunt.log.error('tests failed: please try again.'.red); | ||
} | ||
if(specRunner.hasFailures){ | ||
grunt.log.error('Task failed due to failed test, please try again.'.red); | ||
} | ||
var endTime = new Date(); | ||
@@ -468,0 +465,0 @@ grunt.log.writeln("Total Execution Time:" + Math.ceil((endTime - startTime) / 1000 / 60).toFixed(2) + ' Minutes'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
218514
517