tap-parser
Advanced tools
Comparing version 3.0.4 to 3.0.5
@@ -78,3 +78,3 @@ #!/usr/bin/env node | ||
return (res.ok ? '' : 'not ') + 'ok ' + res.id + | ||
(res.name ? ' - ' + res.name : '') + | ||
(res.name ? ' - ' + res.name.replace(/ \{$/, '') : '') + | ||
(res.skip ? ' # SKIP' + | ||
@@ -81,0 +81,0 @@ (res.skip === true ? '' : ' ' + res.skip) : '') + |
11
index.js
@@ -284,12 +284,6 @@ // Transforms a stream of TAP into a stream of result objects | ||
if (this.bailedOut) { | ||
if (cb) | ||
process.nextTick(cb) | ||
return true | ||
} | ||
this.buffer += chunk | ||
do { | ||
var match = this.buffer.match(/^.*\r?\n/) | ||
if (!match || this.bailedOut) | ||
if (!match) | ||
break | ||
@@ -542,2 +536,5 @@ | ||
if (this.bailedOut) | ||
return | ||
if (line === '\n') | ||
@@ -544,0 +541,0 @@ return |
{ | ||
"name": "tap-parser", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"description": "parse the test anything protocol", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
30078
711