grunt-parallel-spec-runner
Advanced tools
Comparing version 0.3.2 to 0.3.3
{ | ||
"name": "grunt-parallel-spec-runner", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"description": "Plugin used to configure and launch multiple spec ", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/RallySoftware/grunt-parallel-spec-runner.git", |
@@ -28,5 +28,5 @@ /* | ||
var handleError = function(error, result, code){ | ||
var handleError = function(error, result, code, specFile){ | ||
if(code !== 0){ | ||
grunt.log.error(result); | ||
grunt.log.error(specFile || '' + ':' + result); | ||
} | ||
@@ -89,3 +89,3 @@ }; | ||
{ | ||
handleError(error, result, code); | ||
handleError(error, result, code, specRunner.file); | ||
filesWritten[specRunner.file] = true; | ||
@@ -132,3 +132,3 @@ }; | ||
var df = function(error, result, code){ | ||
handleError(error, result, code); | ||
handleError(error, result, code, specRunner.file); | ||
activeRunners--; | ||
@@ -149,5 +149,2 @@ runnersCompleted++; | ||
opts.args.push('--symbolSummaryTimeout=' + options.symbolSummaryTimeout); | ||
if(options.keepalive){ | ||
opts.args.push('--keepalive'); | ||
} | ||
@@ -154,0 +151,0 @@ var s = grunt.util.spawn(opts, df); |
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
213251
418