Socket
Socket
Sign inDemoInstall

tap-parser

Package Overview
Dependencies
3
Maintainers
2
Versions
105
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.1.3 to 5.1.4

10

index.js

@@ -214,8 +214,9 @@ // Transforms a stream of TAP into a stream of result objects

if (this.strict) {
this.tapError({
var err = {
tapError: 'Non-TAP data encountered in strict mode',
data: data
})
}
this.tapError(err)
if (this.parent)
this.parent.nonTap(data)
this.parent.tapError(err)
}

@@ -394,5 +395,4 @@

} else if (!this.bailedOut && this.planStart === -1) {
if (this.count === 0) {
if (this.count === 0 && !this.syntheticPlan) {
this.syntheticPlan = true
this.emit('line', '1..0 # no tests found\n')
this.plan(1, 0, 'no tests found', '1..0 # no tests found\n')

@@ -399,0 +399,0 @@ skipAll = true

{
"name": "tap-parser",
"version": "5.1.3",
"version": "5.1.4",
"description": "parse the test anything protocol",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc