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

Unified Diff: pkg/dev_compiler/karma.conf.js

Issue 2396433007: Travis / chrome fixes (Closed)
Patch Set: Created 4 years, 2 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
Index: pkg/dev_compiler/karma.conf.js
diff --git a/pkg/dev_compiler/karma.conf.js b/pkg/dev_compiler/karma.conf.js
index 3fbe32efce7078beb484220889ab37cce028d247..dab62fc6a79ffe9a9e72331d1ddbd8b0462b319b 100644
--- a/pkg/dev_compiler/karma.conf.js
+++ b/pkg/dev_compiler/karma.conf.js
@@ -62,12 +62,12 @@ module.exports = function(config) {
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
customLaunchers: {
- chrome_travis: {
+ ChromeTravis: {
base: 'Chrome',
flags: [ '--no-sandbox' ]
},
- chrome_canary_travis: {
+ ChromeCanaryTravis: {
base: 'ChromeCanary',
flags: [ '--no-sandbox' ]
},
@@ -81,7 +81,7 @@ module.exports = function(config) {
};
if (process.env.TRAVIS) {
- configuration.browsers = ['chrome_canary_travis'];
+ configuration.browsers = ['ChromeTravis'];
configuration.autoWatch = false;
// Enable this for more logging on Travis. It is too much for Travis to
// automatically display, but still results in a downloadable raw log.

Powered by Google App Engine
This is Rietveld 408576698