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

jest-sonar

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-sonar - npm Package Compare versions

Comparing version 0.2.11 to 0.2.12

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [0.2.12](https://github.com/sh33dafi/jest-sonar/compare/v0.2.11...v0.2.12) (2021-02-09)
### Bug Fixes
* **#31:** fixes [#31](https://github.com/sh33dafi/jest-sonar/issues/31) issue with null duration ([5238733](https://github.com/sh33dafi/jest-sonar/commit/52387339f090d9aaebffb183f1d5496223a768f2))
### [0.2.11](https://github.com/sh33dafi/jest-sonar/compare/v0.2.10...v0.2.11) (2020-09-14)

@@ -7,0 +14,0 @@

26

package.json
{
"name": "jest-sonar",
"version": "0.2.11",
"version": "0.2.12",
"description": "A sonar reporter for jest",

@@ -22,16 +22,16 @@ "keywords": [

"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@commitlint/travis-cli": "^9.1.2",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"standard-version": "^9.0.0"
},
"dependencies": {
"entities": "2.0.3",
"strip-ansi": "6.0.0"
"entities": "^2.1.0",
"strip-ansi": "^6.0.0"
},

@@ -41,3 +41,3 @@ "husky": {

"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn lint && yarn test"
"pre-push": "npm run lint && npm run test"
}

@@ -44,0 +44,0 @@ },

@@ -7,2 +7,3 @@ # jest-sonar

[![Build Status](https://travis-ci.org/sh33dafi/jest-sonar.svg?branch=master&service=github)](https://travis-ci.org/sh33dafi/jest-sonar)
![CodeQL](https://github.com/sh33dafi/jest-sonar/workflows/CodeQL/badge.svg)
[![Maintainability](https://api.codeclimate.com/v1/badges/5d705f505c5aeca0a732/maintainability)](https://codeclimate.com/github/sh33dafi/jest-sonar/maintainability)

@@ -9,0 +10,0 @@ [![Test Coverage](https://api.codeclimate.com/v1/badges/5d705f505c5aeca0a732/test_coverage)](https://codeclimate.com/github/sh33dafi/jest-sonar/test_coverage)

@@ -14,3 +14,3 @@ const escape = require('./escape');

name: testCase.fullName,
duration: '' + testCase.duration,
duration: `${testCase.duration || 0}`,
failures: testCase.failureMessages,

@@ -17,0 +17,0 @@ status: testCase.status

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