update dependencies, fixes to support new authentication features
[websub-hub] / test / stub-logger.js
index 5ac0b984fc33608c9860755e799ff8552049865d..8c10ebd677b8ee08a42a7f2b9ef362223e06176d 100644 (file)
@@ -1,6 +1,6 @@
 'use strict';
 
-const sinon = require('sinon'); // eslint-disable-line node/no-unpublished-require
+const sinon = require('sinon');
 
 const nop = () => { /* */ };
 const stubLogger = process.env.VERBOSE_TESTS ? console : {
@@ -12,7 +12,7 @@ stubLogger['_reset'] = () => {
   sinon.spy(stubLogger, 'debug');
   sinon.spy(stubLogger, 'error');
   sinon.spy(stubLogger, 'info');
-},
+};
 
 
 module.exports = stubLogger;
\ No newline at end of file