Skip to content

Commit 3fcc78e

Browse files
committed
Suppress console logs when testing locally
See #278 - not really a fix though. [email protected] Review URL: https://codereview.chromium.org/1275053003 .
1 parent c6a6488 commit 3fcc78e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pkg/dev_compiler/karma.conf.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ module.exports = function(config) {
4141
},
4242

4343
client: {
44+
captureConsole: false,
4445
mocha: {
4546
ui: 'tdd'
4647
},
@@ -97,6 +98,7 @@ module.exports = function(config) {
9798
configuration.browsers = ['chrome_canary_travis'];
9899
configuration.autoWatch = false;
99100
configuration.logLevel = config.LOG_DEBUG;
101+
configuration.client.captureConsole = true;
100102
}
101103

102104
config.set(configuration);

0 commit comments

Comments
 (0)