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

jest-cli

Package Overview
Dependencies
Maintainers
1
Versions
391
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-cli - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11

2

package.json
{
"name": "jest-cli",
"description": "Painless JavaScript Unit Testing.",
"version": "0.1.10",
"version": "0.1.11",
"dependencies": {

@@ -6,0 +6,0 @@ "coffee-script": "1.7.1",

@@ -186,10 +186,7 @@ /**

if (runner.suites().length) {
var topLevelSuite;
runner.suites().forEach(function(suite) {
if (suite.parentSuite === null) {
topLevelSuite = suite;
_extractSuiteResults(testResults, [], suite);
}
});
_extractSuiteResults(testResults, [], topLevelSuite);
}

@@ -196,0 +193,0 @@

@@ -78,9 +78,12 @@ /**

);
this._nodeHasteTestRegExp = new RegExp(
'/' + utils.escapeStrForRegex(config.testDirectoryName) + '/' +
'.*\\.(' +
utils.escapeStrForRegex(config.testFileExtensions.join('|')) +
config.testFileExtensions.map(function(ext) {
return utils.escapeStrForRegex(ext);
})
.join('|') +
')$'
);
this._opts = Object.create(DEFAULT_OPTIONS);

@@ -87,0 +90,0 @@ if (options) {

Sorry, the diff of this file is not supported yet

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