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

Side by Side Diff: karma.conf.js

Issue 1673863002: Infra for running lib tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Reformat Created 4 years, 10 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
« no previous file with comments | « .gitignore ('k') | test/browser/language_tests.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 harmony_flags = '--js-flags="' + [ 5 var harmony_flags = '--js-flags="' + [
6 '--harmony', 6 '--harmony',
7 ].join(' ') + '"'; 7 ].join(' ') + '"';
8 8
9 var configuration = { 9 var configuration = {
10 10
(...skipping 12 matching lines...) Expand all
23 'test/codegen/expect/async_helper/async_helper.js', 23 'test/codegen/expect/async_helper/async_helper.js',
24 'test/codegen/expect/dom/dom.js', 24 'test/codegen/expect/dom/dom.js',
25 'test/codegen/expect/expect/expect.js', 25 'test/codegen/expect/expect/expect.js',
26 'test/codegen/expect/matcher/matcher.js', 26 'test/codegen/expect/matcher/matcher.js',
27 'test/codegen/expect/matcher/src/*.js', 27 'test/codegen/expect/matcher/src/*.js',
28 'test/codegen/expect/unittest/unittest.js', 28 'test/codegen/expect/unittest/unittest.js',
29 'test/codegen/expect/syncstar_syntax.js', 29 'test/codegen/expect/syncstar_syntax.js',
30 'test/codegen/expect/language-all.js', 30 'test/codegen/expect/language-all.js',
31 'test/codegen/expect/language/sub/sub.js', 31 'test/codegen/expect/language/sub/sub.js',
32 'test/codegen/expect/language/*.lib', 32 'test/codegen/expect/language/*.lib',
33 'test/codegen/expect/lib-typed_data-all.js',
33 'test/browser/*.js', 34 'test/browser/*.js',
34 'test-main.js', 35 'test-main.js',
35 ], 36 ],
36 37
37 // list of files to exclude 38 // list of files to exclude
38 exclude: [ 39 exclude: [
39 ], 40 ],
40 41
41 // preprocess matching files before serving them to the browser 42 // preprocess matching files before serving them to the browser
42 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces sor 43 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces sor
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 configuration.browsers = ['chrome_canary_travis', 'Electron']; 97 configuration.browsers = ['chrome_canary_travis', 'Electron'];
97 configuration.autoWatch = false; 98 configuration.autoWatch = false;
98 // Enable this for more logging on Travis. It is too much for Travis to 99 // Enable this for more logging on Travis. It is too much for Travis to
99 // automatically display, but still results in a downloadable raw log. 100 // automatically display, but still results in a downloadable raw log.
100 // configuration.logLevel = config.LOG_DEBUG; 101 // configuration.logLevel = config.LOG_DEBUG;
101 configuration.client.captureConsole = true; 102 configuration.client.captureConsole = true;
102 } 103 }
103 104
104 config.set(configuration); 105 config.set(configuration);
105 }; 106 };
OLDNEW
« no previous file with comments | « .gitignore ('k') | test/browser/language_tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698