From bd0193540da42160fd869dd6ed330fda462098a4 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Tue, 7 Mar 2017 20:49:06 +0100 Subject: [PATCH] build: fix karma console log Karma recently introduced a breaking change, that **hasn't** been noted (https://github.com/karma-runner/karma/issues/2582). Karma doesn't show any `console.log` calls anymore, because the priority order of the `LogLevel`'s has been changed. The default log leve for the `browserConsoleLog` does no longer include the `LOG` log-level. --- test/karma.conf.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/karma.conf.js b/test/karma.conf.js index 362ffeae2e77..8ca7c3338aea 100644 --- a/test/karma.conf.js +++ b/test/karma.conf.js @@ -86,7 +86,13 @@ module.exports = (config) => { captureTimeout: 120000, browsers: ['Chrome_1024x768'], - singleRun: false + singleRun: false, + + browserConsoleLogOptions: { + terminal: true, + level: 'log' + } + }); if (process.env['TRAVIS']) {