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

jest-matchers

Package Overview
Dependencies
Maintainers
3
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-matchers - npm Package Compare versions

Comparing version 20.1.0-chi.1 to 20.1.0-delta.1

14

build/index.js

@@ -197,4 +197,7 @@ 'use strict';

} catch (error) {
// Remove this and deeper functions from the stack trace frame.
Error.captureStackTrace(error, throwingMatcher);
// Try to remove this and deeper functions from the stack trace frame.
// Guard for some environments (browsers) that do not support this feature.
if (Error.captureStackTrace) {
Error.captureStackTrace(error, throwingMatcher);
}
throw error;

@@ -215,4 +218,7 @@ }

error.matcherResult = result;
// Remove this function from the stack trace frame.
Error.captureStackTrace(error, throwingMatcher);
// Try to remove this function from the stack trace frame.
// Guard for some environments (browsers) that do not support this feature.
if (Error.captureStackTrace) {
Error.captureStackTrace(error, throwingMatcher);
}

@@ -219,0 +225,0 @@ if (throws) {

{
"name": "jest-matchers",
"version": "20.1.0-chi.1",
"version": "20.1.0-delta.1",
"repository": {

@@ -12,8 +12,8 @@ "type": "git",

"dependencies": {
"jest-diff": "^20.1.0-chi.1",
"jest-get-type": "^20.1.0-chi.1",
"jest-matcher-utils": "^20.1.0-chi.1",
"jest-message-util": "^20.1.0-chi.1",
"jest-regex-util": "^20.1.0-chi.1"
"jest-diff": "20.1.0-delta.1",
"jest-get-type": "20.1.0-delta.1",
"jest-matcher-utils": "20.1.0-delta.1",
"jest-message-util": "20.1.0-delta.1",
"jest-regex-util": "20.1.0-delta.1"
}
}

Sorry, the diff of this file is too big to display

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