initial commit
[squeep-html-template-helper] / test / stub-logger.js
1 'use strict';
2
3 const nop = () => { /* */ };
4 const stubLogger = process.env.VERBOSE_TESTS ? console : {
5 debug: nop,
6 error: nop,
7 info: nop,
8 };
9
10 module.exports = stubLogger;