| OLD | NEW |
| 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 'gen/codegen_output/async_helper/async_helper.js', |
| 20 'test/codegen/expect/dom/dom.js', | 20 'gen/codegen_output/dom/dom.js', |
| 21 'test/codegen/expect/expect/expect.js', | 21 'gen/codegen_output/expect/expect.js', |
| 22 'test/codegen/expect/path/path.js', | 22 'gen/codegen_output/path/path.js', |
| 23 'test/codegen/expect/stack_trace/stack_trace.js', | 23 'gen/codegen_output/stack_trace/stack_trace.js', |
| 24 'test/codegen/expect/js/js.js', | 24 'gen/codegen_output/js/js.js', |
| 25 'test/codegen/expect/matcher/matcher.js', | 25 'gen/codegen_output/matcher/matcher.js', |
| 26 'test/codegen/expect/unittest/unittest.js', | 26 'gen/codegen_output/unittest/unittest.js', |
| 27 'test/codegen/expect/syncstar_syntax.js', | 27 'gen/codegen_output/syncstar_syntax.js', |
| 28 'test/codegen/expect/language/**.js', | 28 'gen/codegen_output/language/**.js', |
| 29 'test/codegen/expect/language/sub/sub.js', | 29 'gen/codegen_output/language/sub/sub.js', |
| 30 'test/codegen/expect/language/*.lib', | 30 'gen/codegen_output/language/*.lib', |
| 31 'test/codegen/expect/corelib/**.js', | 31 'gen/codegen_output/corelib/**.js', |
| 32 'test/codegen/expect/lib/convert/**.js', | 32 'gen/codegen_output/lib/convert/**.js', |
| 33 'test/codegen/expect/lib/html/**.js', | 33 'gen/codegen_output/lib/html/**.js', |
| 34 'test/codegen/expect/lib/math/**.js', | 34 'gen/codegen_output/lib/math/**.js', |
| 35 'test/codegen/expect/lib/typed_data/**.js', | 35 'gen/codegen_output/lib/typed_data/**.js', |
| 36 'test/browser/*.js', | 36 'test/browser/*.js', |
| 37 'test-main.js', | 37 'test-main.js', |
| 38 ], | 38 ], |
| 39 | 39 |
| 40 // list of files to exclude | 40 // list of files to exclude |
| 41 exclude: [ | 41 exclude: [ |
| 42 ], | 42 ], |
| 43 | 43 |
| 44 // preprocess matching files before serving them to the browser | 44 // preprocess matching files before serving them to the browser |
| 45 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces
sor | 45 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces
sor |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 configuration.browsers = ['chrome_canary_travis']; | 100 configuration.browsers = ['chrome_canary_travis']; |
| 101 configuration.autoWatch = false; | 101 configuration.autoWatch = false; |
| 102 // Enable this for more logging on Travis. It is too much for Travis to | 102 // Enable this for more logging on Travis. It is too much for Travis to |
| 103 // automatically display, but still results in a downloadable raw log. | 103 // automatically display, but still results in a downloadable raw log. |
| 104 // configuration.logLevel = config.LOG_DEBUG; | 104 // configuration.logLevel = config.LOG_DEBUG; |
| 105 configuration.client.captureConsole = true; | 105 configuration.client.captureConsole = true; |
| 106 } | 106 } |
| 107 | 107 |
| 108 config.set(configuration); | 108 config.set(configuration); |
| 109 }; | 109 }; |
| OLD | NEW |