New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dollarshaveclub/e2e

Package Overview
Dependencies
Maintainers
26
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dollarshaveclub/e2e - npm Package Compare versions

Comparing version 2.1.0-rc.1 to 2.1.0-rc.2

13

lib/run-test.js

@@ -405,3 +405,14 @@ const debug = require('debug')('dsc-e2e:lib:run-test')

result.error = err
if (this.eventsEmitter) this.eventsEmitter.emit('run-step.timeout', { testId: this.context.test.id, stepName: name })
// Metrics Events
if (this.eventsEmitter) {
if (result.error.code) {
this.eventsEmitter.emit('run-step.assertion-failure', { testId: this.context.test.id })
} else if (!result.error.code) { // Timeouts don't have an error code attached
this.eventsEmitter.emit('run-step.timeout', { testId: this.context.test.id, stepName: name })
}
this.eventsEmitter.emit('run-step.failure', { testId: this.context.test.id })
}
return false // SKIP

@@ -408,0 +419,0 @@ } finally {

2

package.json
{
"name": "@dollarshaveclub/e2e",
"version": "2.1.0-rc.1",
"version": "2.1.0-rc.2",
"description": "Make End-to-End Testing Great for Once",

@@ -5,0 +5,0 @@ "main": "lib",

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