Index: karma.conf.js |
diff --git a/karma.conf.js b/karma.conf.js |
index db215dd4d6d41327d1480aee8a3fd389af322aa2..4153a19e9bdae291dded88d5a4563c4c6c2ebbac 100644 |
--- a/karma.conf.js |
+++ b/karma.conf.js |
@@ -53,7 +53,7 @@ module.exports = function(config) { |
// level of logging |
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG |
- logLevel: config.LOG_DEBUG, |
+ logLevel: config.LOG_INFO, |
vsm
2015/07/24 15:01:38
This is unrelated - just suppressing some of the d
|
// enable / disable watching file and executing tests whenever any file changes |
autoWatch: true, |
@@ -90,6 +90,7 @@ module.exports = function(config) { |
if (process.env.TRAVIS) { |
configuration.browsers = ['chrome_canary_travis']; |
configuration.autoWatch = false; |
+ configuration.logLevel = config.LOG_DEBUG; |
} |
config.set(configuration); |