Comparing version
@@ -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({ |
@@ -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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
78457
0.68%1795
0.73%6
20%183
1.67%+ Added
+ Added
Updated
Updated
Updated