New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

coveralls

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coveralls - npm Package Compare versions

Comparing version 2.11.1 to 2.11.2

2

lib/fetchGitData.js

@@ -62,3 +62,3 @@ var exec = require('child_process').exec;

var REGEX_COMMIT_DETAILS = /\nauthor (.+?) <(.+?)>.+\ncommitter (.+?) <(.+?)>.+\n?.+?\n\n(.*)/m;
var REGEX_COMMIT_DETAILS = /\nauthor (.+?) <(.+?)>.+\ncommitter (.+?) <(.+?)>.+\n?[\S\s]+?\n\n(.*)/m;;

@@ -65,0 +65,0 @@ function fetchHeadDetails(git, cb) {

@@ -8,3 +8,3 @@ {

],
"version": "2.11.1",
"version": "2.11.2",
"bugs": {

@@ -34,3 +34,3 @@ "url": "https://github.com/cainus/node-coveralls/issues"

"log-driver": "1.2.4",
"request": "2.36.0"
"request": "2.40.0"
},

@@ -37,0 +37,0 @@ "devDependencies": {

@@ -48,3 +48,3 @@ #node-coveralls

Instrumenting your app for coverage is probably harder than it needs to be (read [here](http://www.seejohncode.com/2012/03/13/setting-up-mocha-jscoverage/) or [here](http://tjholowaychuk.com/post/18175682663/mocha-test-coverage)), but that's also a necessary step.
Instrumenting your app for coverage is probably harder than it needs to be (read [here](http://www.seejohncode.com/2012/03/13/setting-up-mocha-jscoverage/)), but that's also a necessary step.

@@ -58,2 +58,5 @@ In mocha, if you've got your code instrumented for coverage, the command for a travis build would look something like this:

### [Istanbul](https://github.com/gotwarlost/istanbul)
**With Mocha:**
```sh

@@ -63,2 +66,8 @@ istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage

**With Jasmine:**
```sh
istanbul cover jasmine-node --captureExceptions spec/ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
```
### [Nodeunit](https://github.com/caolan/nodeunit) + [JSCoverage](https://github.com/fishbar/jscoverage)

@@ -113,3 +122,3 @@

[coveralls-image]: https://img.shields.io/coveralls/cainus/node-coveralls.svg?branch=master
[coveralls-image]: https://img.shields.io/coveralls/cainus/node-coveralls/master.svg
[coveralls-url]: https://coveralls.io/r/cainus/node-coveralls?branch=master

@@ -116,0 +125,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