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

Side by Side Diff: karma.conf.js

Issue 1928443006: Stop concatenating all tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | test/codegen/expect/lib-typed_data-all.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 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
11 // available frameworks: https://npmjs.org/browse/keyword/karma-adapter 11 // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
12 frameworks: ['mocha', 'requirejs', 'chai'], 12 frameworks: ['mocha', 'requirejs', 'chai'],
13 13
14 // list of files / patterns to load in the browser 14 // list of files / patterns to load in the browser
15 files: [ 15 files: [
16 'lib/runtime/dart_*.js', 16 'lib/runtime/dart_*.js',
17 'lib/runtime/dart/*.js', 17 'lib/runtime/dart/*.js',
18 // {pattern: 'test/browser/*.js', included: false} 18 // {pattern: 'test/browser/*.js', included: false}
19 'test/codegen/expect/async_helper/async_helper.js', 19 'test/codegen/expect/async_helper/async_helper.js',
20 'test/codegen/expect/dom/dom.js', 20 'test/codegen/expect/dom/dom.js',
21 'test/codegen/expect/expect/expect.js', 21 'test/codegen/expect/expect/expect.js',
22 'test/codegen/expect/matcher/matcher.js', 22 'test/codegen/expect/matcher/matcher.js',
23 'test/codegen/expect/unittest/unittest.js', 23 'test/codegen/expect/unittest/unittest.js',
24 'test/codegen/expect/syncstar_syntax.js', 24 'test/codegen/expect/syncstar_syntax.js',
25 'test/codegen/expect/language-all.js', 25 'test/codegen/expect/language/**.js',
26 'test/codegen/expect/language/sub/sub.js', 26 'test/codegen/expect/language/sub/sub.js',
27 'test/codegen/expect/language/*.lib', 27 'test/codegen/expect/language/*.lib',
28 'test/codegen/expect/lib-typed_data-all.js', 28 'test/codegen/expect/lib-typed_data/**.js',
29 'test/browser/*.js', 29 'test/browser/*.js',
30 'test-main.js', 30 'test-main.js',
31 ], 31 ],
32 32
33 // list of files to exclude 33 // list of files to exclude
34 exclude: [ 34 exclude: [
35 ], 35 ],
36 36
37 // preprocess matching files before serving them to the browser 37 // preprocess matching files before serving them to the browser
38 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces sor 38 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces sor
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 }, 82 },
83 83
84 browsers: ['ChromeCanary', 'Electron'], 84 browsers: ['ChromeCanary', 'Electron'],
85 85
86 // Continuous Integration mode 86 // Continuous Integration mode
87 // if true, Karma captures browsers, runs the tests and exits 87 // if true, Karma captures browsers, runs the tests and exits
88 singleRun: false, 88 singleRun: false,
89 }; 89 };
90 90
91 if (process.env.TRAVIS) { 91 if (process.env.TRAVIS) {
92 configuration.browsers = ['chrome_canary_travis', 'Electron']; 92 configuration.browsers = ['chrome_canary_travis'];
93 configuration.autoWatch = false; 93 configuration.autoWatch = false;
94 // Enable this for more logging on Travis. It is too much for Travis to 94 // Enable this for more logging on Travis. It is too much for Travis to
95 // automatically display, but still results in a downloadable raw log. 95 // automatically display, but still results in a downloadable raw log.
96 // configuration.logLevel = config.LOG_DEBUG; 96 // configuration.logLevel = config.LOG_DEBUG;
97 configuration.client.captureConsole = true; 97 configuration.client.captureConsole = true;
98 } 98 }
99 99
100 config.set(configuration); 100 config.set(configuration);
101 }; 101 };
OLDNEW
« no previous file with comments | « no previous file | test/codegen/expect/lib-typed_data-all.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698