jest-sonar
Advanced tools
Comparing version 0.2.11 to 0.2.12
@@ -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 @@ |
{ | ||
"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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78
2
18828
17
171
1
+ Addedentities@2.2.0(transitive)
+ Addedstrip-ansi@6.0.1(transitive)
- Removedentities@2.0.3(transitive)
- Removedstrip-ansi@6.0.0(transitive)
Updatedentities@^2.1.0
Updatedstrip-ansi@^6.0.0