New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.0 to 1.0.1

10

jest-simple-dot-reporter.js

@@ -44,4 +44,10 @@ class JestSimpleDotReporter {

onTestResult() {
process.stdout.write('.');
onTestResult(test, testResult) {
for (var i = 0; i < testResult.testResults.length; i++) {
if (testResult.testResults[i].status === 'passed') {
process.stdout.write('.');
} else {
process.stdout.write('F');
}
}
}

@@ -48,0 +54,0 @@ }

2

package.json
{
"name": "jest-simple-dot-reporter",
"version": "1.0.0",
"version": "1.0.1",
"description": "A super simple jest dot reporter, great for use within shells like emacs ;)",

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

# Simple dot reporter for jest
No dependencies, no interactive shell needed, just dots. Also this is nice because it won't swallow your console.logs.
## Installation

@@ -4,0 +6,0 @@

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