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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « CHANGELOG.md ('k') | lib/js/amd/dart_sdk.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: karma.conf.js
diff --git a/karma.conf.js b/karma.conf.js
index 8fdac3a5af1e87be85fba761a5bb58bd743d60a2..cf95523cafa43f0eacc1105f78b11ed91c737fc5 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -13,26 +13,17 @@ 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/mirrors/**.js',
- 'gen/codegen_output/lib/typed_data/**.js',
- 'gen/codegen_output/lib/*/**.err',
- 'test/browser/*.js',
+ {pattern: 'lib/js/amd/dart_sdk.js', included: false},
+ {pattern: 'gen/codegen_output/pkg/*.js', included: false},
+ {pattern: 'gen/codegen_output/language/**/*.js', included: false},
+ {pattern: 'gen/codegen_output/corelib/**/*.js', included: false},
+ {pattern: 'gen/codegen_output/lib/**/*.js', 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
« 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