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

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

Issue 176943008: Update the Angular/DI tests to latest from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
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: [
(...skipping 12 matching lines...) Expand all
23 23
24 autoWatch: false, 24 autoWatch: false,
25 25
26 // If browser does not capture in given timeout [ms], kill it 26 // If browser does not capture in given timeout [ms], kill it
27 captureTimeout: 5000, 27 captureTimeout: 5000,
28 28
29 plugins: [ 29 plugins: [
30 'karma-dart', 30 'karma-dart',
31 'karma-chrome-launcher', 31 'karma-chrome-launcher',
32 'karma-script-launcher', 32 'karma-script-launcher',
33 'karma-phantomjs-launcher',
34 'karma-junit-reporter', 33 'karma-junit-reporter',
35 '../../../karma-parser-generator', 34 '../../../karma-parser-generator',
36 '../../../karma-parser-getter-setter' 35 '../../../karma-parser-getter-setter'
37 ], 36 ],
38 37
39 customLaunchers: { 38 customLaunchers: {
40 Dartium: { base: 'ChromeCanary', flags: ['--no-sandbox'] }, 39 Dartium: { base: 'ChromeCanary', flags: ['--no-sandbox'] },
41 ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] } 40 ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] }
42 }, 41 },
43 42
44 preprocessors: { 43 preprocessors: {
45 'test/core/parser/generated_functions.dart': ['parser-generator'], 44 'test/core/parser/generated_functions.dart': ['parser-generator'],
46 'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter'] 45 'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter']
47 }, 46 },
48 47
49 junitReporter: { 48 junitReporter: {
50 outputFile: 'test_out/unit.xml', 49 outputFile: 'test_out/unit.xml',
51 suite: 'unit' 50 suite: 'unit'
52 } 51 }
53 }); 52 });
54 }; 53 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698