Skip to content

Commit

Permalink
Merge pull request #10 from DomiR/master
Browse files Browse the repository at this point in the history
feat(jest): make jest test pass
  • Loading branch information
mwittig authored Mar 4, 2019
2 parents 8232cd6 + 9f298f8 commit dd33bfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ var util = require('util'),
lastRequest = Promise.resolve(),
debug = process.env.hasOwnProperty('EDIMAX_DEBUG') ? consoleDebug : function () {
},
agent = new require('http').Agent({ keepAlive: false });
nodeHttp = require('http')
var agent = new nodeHttp.Agent({ keepAlive: false });

require('es6-object-assign/auto');

Expand Down

0 comments on commit dd33bfc

Please sign in to comment.