diff --git a/test/AioLogger.test.js b/test/AioLogger.test.js index 731dd86..1110cbb 100644 --- a/test/AioLogger.test.js +++ b/test/AioLogger.test.js @@ -12,7 +12,11 @@ governing permissions and limitations under the License. const AioLogger = require('../src/AioLogger') const fs = require('fs-extra') -global.console = { log: jest.fn() } +global.console = { + log: jest.fn(), + warn: jest.fn(), + error: jest.fn() +} beforeEach(() => { global.console.log.mockClear()