Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: karma.conf.js

Issue 1257233008: fix language_tests.js to use strict mode (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: add comment Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/browser/language_tests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: karma.conf.js
diff --git a/karma.conf.js b/karma.conf.js
index 9790de67c477c769af655c021180f7344afa26de..6357b791436566bb89cfddfe1ca2baa573325a3d 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -59,7 +59,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,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
@@ -72,17 +72,17 @@ module.exports = function(config) {
// and remove the custom launchers.
customLaunchers: {
chrome_harmony: {
- base: 'Chrome',
+ base: 'Chrome',
flags: [ harmony_flags ],
},
chrome_canary_harmony: {
- base: 'ChromeCanary',
+ base: 'ChromeCanary',
flags: [ harmony_flags ],
},
chrome_canary_travis: {
- base: 'ChromeCanary',
+ base: 'ChromeCanary',
flags: [ '--no-sandbox', harmony_flags ]
},
},
@@ -96,6 +96,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);
« no previous file with comments | « no previous file | test/browser/language_tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698