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.0.5 to 0.0.6

2

package.json
{
"name": "grunt-parallel-spec-runner",
"version": "0.0.5",
"version": "0.0.6",
"description": "Plugin used to configure and launch multiple spec ",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/RallySoftware/grunt-parallel-spec-runner.git",

@@ -135,9 +135,3 @@ /*

grunt: true,
opts: {
stdio: [
process.stdin,
process.stout,
process.stderr
]
},
opts: {stdio: 'inherit'},
args: ['webdriver_jasmine_runner:' + options.target + ':' + specRunner.file]

@@ -149,12 +143,12 @@ }

}
var s = grunt.util.spawn(opts, df);
grunt.util.spawn(opts, df);
//TODO: see if we can get this working with stdio: {'inherit'}
s.stdout.on('data', function(data) {
var msg = data.toString();
var pat = /\d+ of \d+ tests failed:/;
if(pat.test(msg)) {
var failures = +msg.match(pat)[0].match(/\d+/)[0];
summary.failures = summary.failures + failures;
}
});
//s.stdout.on('data', function(data) {
// var msg = data.toString();
// var pat = /\d+ of \d+ tests failed:/;
// if(pat.test(msg)) {
// var failures = +msg.match(pat)[0].match(/\d+/)[0];
// summary.failures = summary.failures + failures;
// }
//});
}

@@ -161,0 +155,0 @@ }, 500);

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