diff options
| author | Matthew J. Morrison <[email protected]> | 2013-09-06 22:47:15 -0500 |
|---|---|---|
| committer | Matthew J. Morrison <[email protected]> | 2013-09-06 22:47:15 -0500 |
| commit | 2d4e05941db109062291ef194935cec42eef2cb7 (patch) | |
| tree | 89032a19e143a3d7e1cbc06a14efc19d58cda10d /test/getOptions.js | |
| parent | 8078aa060a0361d358b069f92fa07af7f9e27bd4 (diff) | |
| download | node-coveralls-2d4e05941db109062291ef194935cec42eef2cb7.tar.xz node-coveralls-2d4e05941db109062291ef194935cec42eef2cb7.zip | |
Added getBaseOptions export to index.js
Diffstat (limited to 'test/getOptions.js')
| -rw-r--r-- | test/getOptions.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/getOptions.js b/test/getOptions.js index 87e5b80..939cedd 100644 --- a/test/getOptions.js +++ b/test/getOptions.js @@ -1,7 +1,7 @@ var should = require('should'); -var getOptions = require('../index').getOptions; -var getBaseOptions = require('../lib/getOptions').getBaseOptions; - +var index = require('../index'); +var getOptions = index.getOptions; +var getBaseOptions = index.getBaseOptions; describe("getBaseOptions", function(){ beforeEach(function(){ |
