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

Side by Side Diff: pkg/dev_compiler/karma.conf.js

Issue 2334763002: Testing support for FF and Safari (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Karma configuration 1 // Karma configuration
2 // Generated on Mon Apr 20 2015 06:33:20 GMT-0700 (PDT) 2 // Generated on Mon Apr 20 2015 06:33:20 GMT-0700 (PDT)
3 3
4 module.exports = function(config) { 4 module.exports = function(config) {
5 var configuration = { 5 var configuration = {
6 6
7 // base path that will be used to resolve all patterns (eg. files, exclude) 7 // base path that will be used to resolve all patterns (eg. files, exclude)
8 basePath: '', 8 basePath: '',
9 9
10 // frameworks to use 10 // frameworks to use
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 if (process.env.TRAVIS) { 83 if (process.env.TRAVIS) {
84 configuration.browsers = ['chrome_canary_travis']; 84 configuration.browsers = ['chrome_canary_travis'];
85 configuration.autoWatch = false; 85 configuration.autoWatch = false;
86 // Enable this for more logging on Travis. It is too much for Travis to 86 // Enable this for more logging on Travis. It is too much for Travis to
87 // automatically display, but still results in a downloadable raw log. 87 // automatically display, but still results in a downloadable raw log.
88 // configuration.logLevel = config.LOG_DEBUG; 88 // configuration.logLevel = config.LOG_DEBUG;
89 configuration.client.captureConsole = true; 89 configuration.client.captureConsole = true;
90 } 90 }
91 91
92 if (process.env.DDC_BROWSERS) {
93 configuration.browsers = process.env.DDC_BROWSERS.split(':');
94 }
95
92 config.set(configuration); 96 config.set(configuration);
93 }; 97 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698