aboutsummaryrefslogtreecommitdiff
path: root/test/getOptions.js
diff options
context:
space:
mode:
authorNick Merwin <[email protected]>2015-07-16 18:22:13 -0700
committerNick Merwin <[email protected]>2015-07-16 18:22:13 -0700
commitcdff9ff2ad276a33ad8710042d942a8e30e043bb (patch)
tree637cf9d9c852cb245519e1048ad331bc33ed2109 /test/getOptions.js
parent64653c6df1d63065b0fb0b4984ac4c88f809b068 (diff)
parent4344c189726451016e86627a0c11620ce420cdaf (diff)
downloadnode-coveralls-cdff9ff2ad276a33ad8710042d942a8e30e043bb.tar.xz
node-coveralls-cdff9ff2ad276a33ad8710042d942a8e30e043bb.zip
Merge pull request #101 from ejlangev/support-pull-requests
Pass CI_PULL_REQUEST through to coveralls if it is set
Diffstat (limited to 'test/getOptions.js')
-rw-r--r--test/getOptions.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/getOptions.js b/test/getOptions.js
index 8a77708..356fb96 100644
--- a/test/getOptions.js
+++ b/test/getOptions.js
@@ -115,6 +115,9 @@ describe("getOptions", function(){
it ("should set service_name if it exists", function(done){
testServiceName(getOptions, done);
});
+ it("should set service_pull_request if it exists", function(done){
+ testServicePullRequest(getOptions, done);
+ });
it ("should set service_name and service_job_id if it's running on travis-ci", function(done){
testTravisCi(getOptions, done);
});
@@ -246,6 +249,14 @@ var testServiceName = function(sut, done){
});
};
+var testServicePullRequest = function(sut, done){
+ process.env.CI_PULL_REQUEST = "https://github.com/fake/fake/pulls/123";
+ sut(function(err, options){
+ options.service_pull_request.should.equal("123");
+ done();
+ });
+};
+
var testTravisCi = function(sut, done){
process.env.TRAVIS = "TRUE";
process.env.TRAVIS_JOB_ID = "1234";