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.2 to 0.2.4

commitlint.config.js

2

__test__/reporter.spec.js

@@ -64,3 +64,3 @@ const Reporter = require('../src/reporter');

{
fullName: 'Skipped',
fullName: 'Skipped "this test is skipped"',
duration: 10,

@@ -67,0 +67,0 @@ failureMessages: [],

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

### [0.2.4](https://github.com/sh33dafi/jest-sonar/compare/v0.2.2...v0.2.4) (2019-09-07)
### [0.2.3](https://github.com/sh33dafi/jest-sonar/compare/v0.2.2...v0.2.3) (2019-09-07)
### [0.2.2](https://github.com/sh33dafi/jest-sonar/compare/v0.2.1...v0.2.2) (2019-08-26)

@@ -7,0 +15,0 @@

@@ -13,6 +13,4 @@ # Contributing

2. Update the README.md with details of changes to the interface, this includes new environment
variables, exposed ports, useful file locations and container parameters.
3. Increase the version numbers in any examples files and the README.md to the new version that this
Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/).
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
do not have permission to do that, you may request the second reviewer to merge it for you.
variables, useful file locations, defaults, ...
3. Make sure your commit messages follow the [conventional commits spec](https://www.conventionalcommits.org/)
4. You may merge the Pull Request in once you have the sign-off.
{
"name": "jest-sonar",
"version": "0.2.2",
"version": "0.2.4",
"description": "A sonar reporter for jest",

@@ -22,5 +22,9 @@ "keywords": [

"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"eslint": "^6.2.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.4",
"jest": "^24.8.0",

@@ -33,3 +37,9 @@ "prettier": "^1.18.2",

"strip-ansi": "5.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn lint && yarn test"
}
}
}

@@ -58,2 +58,5 @@ # jest-sonar

## Contribution
[Contribution guidelines for this project](CONTRIBUTING.md)
Contributions to this project are welcome, either by submitting bug reports, submitting feature requests or submitting pull requests.

@@ -60,0 +63,0 @@

@@ -61,3 +61,5 @@ const path = require('path');

if (skippedTest(testCase)) {
render.push(`<skipped message="${testCase.name}"/>`);
render.push(
`<skipped message="${escape(testCase.name)}"/>`
);
}

@@ -64,0 +66,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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