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

Side by Side Diff: karma.conf.js

Issue 2249233002: fix #626, add AMD module format and make it default (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged 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
« no previous file with comments | « CHANGELOG.md ('k') | lib/js/amd/dart_sdk.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 {pattern: 'lib/js/amd/dart_sdk.js', included: false},
17 // {pattern: 'test/browser/*.js', included: false} 17 {pattern: 'gen/codegen_output/pkg/*.js', included: false},
18 'gen/codegen_output/pkg/*.js', 18 {pattern: 'gen/codegen_output/language/**/*.js', included: false},
19 'gen/codegen_output/language/**.js', 19 {pattern: 'gen/codegen_output/corelib/**/*.js', included: false},
20 'gen/codegen_output/language/**.err', 20 {pattern: 'gen/codegen_output/lib/**/*.js', included: false},
21 'gen/codegen_output/corelib/**.js', 21 {pattern: 'test/browser/*.js', included: false},
22 'gen/codegen_output/corelib/**.err',
23 'gen/codegen_output/lib/convert/**.js',
24 'gen/codegen_output/lib/html/**.js',
25 'gen/codegen_output/lib/math/**.js',
26 'gen/codegen_output/lib/mirrors/**.js',
27 'gen/codegen_output/lib/typed_data/**.js',
28 'gen/codegen_output/lib/*/**.err',
29 'test/browser/*.js',
30 'test-main.js', 22 'test-main.js',
31 ], 23 ],
32 24
33 // list of files to exclude 25 // list of files to exclude
34 exclude: [ 26 exclude: [],
35 ],
36 27
37 // preprocess matching files before serving them to the browser 28 // preprocess matching files before serving them to the browser
38 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces sor 29 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces sor
39 preprocessors: { 30 preprocessors: {
40 }, 31 },
41 32
42 client: { 33 client: {
43 captureConsole: false, 34 captureConsole: false,
44 mocha: { 35 mocha: {
45 ui: 'tdd', 36 ui: 'tdd',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 configuration.browsers = ['chrome_canary_travis']; 84 configuration.browsers = ['chrome_canary_travis'];
94 configuration.autoWatch = false; 85 configuration.autoWatch = false;
95 // 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
96 // automatically display, but still results in a downloadable raw log. 87 // automatically display, but still results in a downloadable raw log.
97 // configuration.logLevel = config.LOG_DEBUG; 88 // configuration.logLevel = config.LOG_DEBUG;
98 configuration.client.captureConsole = true; 89 configuration.client.captureConsole = true;
99 } 90 }
100 91
101 config.set(configuration); 92 config.set(configuration);
102 }; 93 };
OLDNEW
« no previous file with comments | « CHANGELOG.md ('k') | lib/js/amd/dart_sdk.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698