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.14 to 0.3.15

2

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

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