Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jest-plugin-must-assert

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-plugin-must-assert - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

2

package.json
{
"name": "jest-plugin-must-assert",
"version": "1.2.0",
"version": "1.3.0",
"description": "Jest plugin for async tests",

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

@@ -24,2 +24,3 @@ const StackUtils = require('stack-utils');

logger = console,
ignoreStack = [],
}) {

@@ -39,7 +40,5 @@ const consoleMethods = Object.entries(global.console);

cwd: process.cwd(),
internals: StackUtils.nodeInternals().concat([
/Zone/,
/zone\.js/,
/jest-plugin-must-assert/,
]),
internals: StackUtils.nodeInternals()
.concat([/Zone/, /zone\.js/, /node_modules/])
.concat(ignoreStack),
});

@@ -184,4 +183,4 @@ // Zone sets itself as a global...

global.it = enhancedTest;
global.fit = enhancedTest;
global.fit = enhancedTest.only;
global.test = enhancedTest;
}
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