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

jest-simple-dot-reporter

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-simple-dot-reporter - npm Package Compare versions

Comparing version 1.0.3 to 1.0.5

14

jest-simple-dot-reporter.js

@@ -10,3 +10,5 @@ const pluralize = (word, count) => `${count} ${word}${count === 1 ? '' : 's'}`;

onRunStart(test) {
console.log();
this._numTestSuitesLeft = test.numTotalTestSuites;
console.log()
console.log(`Found ${test.numTotalTestSuites} test suites`);

@@ -28,3 +30,3 @@ }

if (failureMessage) {
console.log(failureMessage);
console.error(failureMessage);
}

@@ -36,5 +38,5 @@ });

if (this._options.color)
console.log(`\x1b[31m${obsoleteError}\x1b[0m`);
console.error(`\x1b[31m${obsoleteError}\x1b[0m`);
else
console.log(obsoleteError);
console.error(obsoleteError);
}

@@ -67,2 +69,6 @@

}
if (!--this._numTestSuitesLeft && this._globalConfig.collectCoverage) {
console.log()
}
}

@@ -69,0 +75,0 @@ }

{
"name": "jest-simple-dot-reporter",
"version": "1.0.3",
"version": "1.0.5",
"description": "A super simple jest dot reporter, great for use within shells like emacs ;)",

@@ -5,0 +5,0 @@ "main": "jest-simple-dot-reporter.js",

@@ -22,7 +22,7 @@ # Simple dot reporter for jest

module.exports = {
verbose: false,
reporters: [
'jest-simple-dot-reporter'
"verbose": false,
"reporters": [
["jest-simple-dot-reporter", {"color": true}]
]
};
```
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