Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-parallel-spec-runner

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-parallel-spec-runner - npm Package Compare versions

Comparing version 0.3.2 to 0.3.3

2

package.json
{
"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);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc