fix changelog
[squeep-indie-auther] / test / stub-logger.js
index c1521573cac8fabc62b46d518177b22c9619f060..5aa88c383811e5f952787e44be15ed37a4d704fd 100644 (file)
@@ -1,10 +1,13 @@
 'use strict';
 
 const { StubLogger: Base } = require('@squeep/test-helper');
+const sinon = require('sinon');
 
 
 class StubLogger extends Base {
-
+  constructor(verbose) {
+    super(sinon, verbose);
+  }
 }
 
 module.exports = StubLogger;