Socket
Socket
Sign inDemoInstall

jest-unique-reporter

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-unique-reporter - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

7

index.js

@@ -47,3 +47,8 @@ // This reporter will keep track of unique test

const titles = suite.testResults.map((t) => {
// Skip over skipped tests
// Title is always blank for these for some reason..
const titles = suite.testResults
.filter((t) => t.status !== 'pending')
.map((t) => {
const testStruct = {

@@ -50,0 +55,0 @@ title: t.title,

2

package.json
{
"name": "jest-unique-reporter",
"version": "1.0.0",
"version": "1.0.1",
"description": "A jest reporter that enforces unique test names",

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

# jest-unique-reporter
A jest reporter that enforces unique test names
A jest reporter that enforces unique test names.
If duplicate test names are found then the test run will fail and tell you where the duplicates are.

@@ -4,0 +5,0 @@ ## Installation

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