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

Side by Side Diff: third_party/pkg/angular/karma-perf.conf.js

Issue 180873006: Update the Angular/DI tests to latest from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Review feedback Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « third_party/pkg/angular/demo/todo/web/todo.dart ('k') | third_party/pkg/angular/karma.conf.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 module.exports = function(config) { 1 module.exports = function(config) {
2 config.set({ 2 config.set({
3 //logLevel: config.LOG_DEBUG, 3 //logLevel: config.LOG_DEBUG,
4 basePath: '.', 4 basePath: '.',
5 frameworks: ['dart-unittest'], 5 frameworks: ['dart-unittest'],
6 6
7 // list of files / patterns to load in the browser 7 // list of files / patterns to load in the browser
8 // all tests must be 'included', but all other libraries must be 'served' an d 8 // all tests must be 'included', but all other libraries must be 'served' an d
9 // optionally 'watched' only. 9 // optionally 'watched' only.
10 files: [ 10 files: [
11 'perf/dom/*.dart', 11 'perf/dom/*.dart',
12 'perf/*_perf.dart',
12 'test/config/filter_tests.dart', 13 'test/config/filter_tests.dart',
13 {pattern: '**/*.dart', watched: true, included: false, served: true}, 14 {pattern: '**/*.dart', watched: true, included: false, served: true},
14 'packages/browser/dart.js', 15 'packages/browser/dart.js',
15 'packages/browser/interop.js' 16 'packages/browser/interop.js'
16 ], 17 ],
17 18
18 autoWatch: false, 19 autoWatch: false,
19 20
20 // If browser does not capture in given timeout [ms], kill it 21 // If browser does not capture in given timeout [ms], kill it
21 captureTimeout: 5000, 22 captureTimeout: 5000,
(...skipping 11 matching lines...) Expand all
33 'test/core/parser/generated_functions.dart': ['parser-generator'], 34 'test/core/parser/generated_functions.dart': ['parser-generator'],
34 'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter'] 35 'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter']
35 }, 36 },
36 37
37 junitReporter: { 38 junitReporter: {
38 outputFile: 'test_out/unit.xml', 39 outputFile: 'test_out/unit.xml',
39 suite: 'unit' 40 suite: 'unit'
40 } 41 }
41 }); 42 });
42 }; 43 };
OLDNEW
« no previous file with comments | « third_party/pkg/angular/demo/todo/web/todo.dart ('k') | third_party/pkg/angular/karma.conf.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698