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

coveralls

Package Overview
Dependencies
Maintainers
2
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

to
3.0.2

4

lib/getOptions.js

@@ -155,2 +155,6 @@ var fs = require('fs');

if (process.env.COVERALLS_FLAG_NAME) {
options.flag_name = process.env.COVERALLS_FLAG_NAME;
}
if (git_commit){

@@ -157,0 +161,0 @@ fetchGitData({

11

package.json

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

],
"version": "3.0.1",
"version": "3.0.2",
"bugs": {

@@ -34,7 +34,8 @@ "url": "https://github.com/nickmerwin/node-coveralls/issues"

"dependencies": {
"js-yaml": "^3.6.1",
"growl": "~> 1.10.0",
"js-yaml": "^3.11.0",
"lcov-parse": "^0.0.10",
"log-driver": "^1.2.5",
"log-driver": "^1.2.7",
"minimist": "^1.2.0",
"request": "^2.79.0"
"request": "^2.85.0"
},

@@ -48,3 +49,3 @@ "devDependencies": {

"sinon-restore": "^1.0.1",
"snyk": "^1.23.3"
"snyk": "^1.78.0"
},

@@ -51,0 +52,0 @@ "engines": {

@@ -119,2 +119,5 @@ var should = require('should');

});
it ("should set flag_name if it exists", function(done) {
testFlagName(getOptions, done);
});
it ("should set service_name if it exists", function(done){

@@ -246,2 +249,11 @@ testServiceName(getOptions, done);

var testFlagName = function(sut, done){
process.env.COVERALLS_FLAG_NAME = 'test flag';
sut(function(err, options){
options.flag_name.should.equal('test flag');
done();
});
};
var testRepoTokenDetection = function(sut, done) {

@@ -248,0 +260,0 @@ var fs = require('fs');

Sorry, the diff of this file is not supported yet