Chromium Code Reviews| Index: karma.conf.js |
| diff --git a/karma.conf.js b/karma.conf.js |
| index 49abf9d8e879f0fb1072be9929ed472689a96455..29ffc4f63956ba587745c0b9df43fd5798db9885 100644 |
| --- a/karma.conf.js |
| +++ b/karma.conf.js |
| @@ -13,25 +13,20 @@ module.exports = function(config) { |
| // list of files / patterns to load in the browser |
| files: [ |
| - 'lib/runtime/dart_*.js', |
| - // {pattern: 'test/browser/*.js', included: false} |
| - 'gen/codegen_output/pkg/*.js', |
| - 'gen/codegen_output/language/**.js', |
| - 'gen/codegen_output/language/**.err', |
| - 'gen/codegen_output/corelib/**.js', |
| - 'gen/codegen_output/corelib/**.err', |
| - 'gen/codegen_output/lib/convert/**.js', |
| - 'gen/codegen_output/lib/html/**.js', |
| - 'gen/codegen_output/lib/math/**.js', |
| - 'gen/codegen_output/lib/typed_data/**.js', |
| - 'gen/codegen_output/lib/*/**.err', |
| - 'test/browser/*.js', |
| + {pattern: 'lib/runtime/dart_sdk.js', included: false}, |
|
vsm
2016/08/16 21:23:23
What does "included" mean here?
Jennifer Messerly
2016/08/16 21:29:27
it's a karma thing:
http://karma-runner.github.io/
|
| + {pattern: 'gen/codegen_output/pkg/*.js', included: false}, |
| + {pattern: 'gen/codegen_output/language/**.js', included: false}, |
| + {pattern: 'gen/codegen_output/language/**.err', included: false}, |
| + {pattern: 'gen/codegen_output/corelib/**.js', included: false}, |
| + {pattern: 'gen/codegen_output/corelib/**.err', included: false}, |
| + {pattern: 'gen/codegen_output/lib/*/**.js', included: false}, |
| + {pattern: 'gen/codegen_output/lib/*/**.err', included: false}, |
| + {pattern: 'test/browser/*.js', included: false}, |
| 'test-main.js', |
| ], |
| // list of files to exclude |
| - exclude: [ |
| - ], |
| + exclude: [], |
| // preprocess matching files before serving them to the browser |
| // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor |