diff options
| -rw-r--r-- | test/getOptions.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/getOptions.js b/test/getOptions.js index fc33012..76691a3 100644 --- a/test/getOptions.js +++ b/test/getOptions.js @@ -5,7 +5,7 @@ var getBaseOptions = index.getBaseOptions; describe("getBaseOptions", function(){ beforeEach(function(){ - process.env = {}; + process.env = {PATH: process.env.PATH}; }); it ("should set service_job_id if it exists", function(done){ testServiceJobId(getBaseOptions, done); @@ -53,7 +53,7 @@ describe("getBaseOptions", function(){ describe("getOptions", function(){ beforeEach(function(){ - process.env = {}; + process.env = {PATH: process.env.PATH}; }); it ("should require a callback", function(done) { (function() { |
