From 65683b6b97604dd4b39d4035bc1fc751facfbf7d Mon Sep 17 00:00:00 2001 From: Juho Teperi Date: Mon, 26 Mar 2018 14:56:57 +0300 Subject: [PATCH] Remove Karma logger hack which doesn't work with 2.0 --- test/runners/karma.conf.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/runners/karma.conf.js b/test/runners/karma.conf.js index a18d0e1..147bc35 100644 --- a/test/runners/karma.conf.js +++ b/test/runners/karma.conf.js @@ -8,17 +8,10 @@ var path = require('path'); -// Doo writes this file to /tmp, so can't use relative require directly -var logger = require(process.cwd() + '/node_modules/karma/lib/logger.js'); - module.exports = function(config) { var suite = path.basename(process.cwd()); - // Hide two unncessary warnings - logger.create('web-server', 'error'); - logger.create('watcher', 'error'); - configData.plugins = ['karma-*']; configData.logLevel = config.LOG_WARN;