forked from dart-archive/angular.dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma-perf.conf.js
42 lines (36 loc) · 1.13 KB
/
karma-perf.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module.exports = function(config) {
config.set({
//logLevel: config.LOG_DEBUG,
basePath: '.',
frameworks: ['dart-unittest'],
// list of files / patterns to load in the browser
// all tests must be 'included', but all other libraries must be 'served' and
// optionally 'watched' only.
files: [
'perf/dom/*.dart',
'test/config/filter_tests.dart',
{pattern: '**/*.dart', watched: true, included: false, served: true},
'packages/browser/dart.js',
'packages/browser/interop.js',
],
autoWatch: false,
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 5000,
plugins: [
'karma-dart',
'karma-chrome-launcher',
'karma-script-launcher',
'karma-junit-reporter',
'../../../karma-parser-generator',
'../../../karma-parser-getter-setter'
],
preprocessors: {
'test/core/parser/generated_functions.dart': ['parser-generator'],
'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter']
},
junitReporter: {
outputFile: 'test_out/unit.xml',
suite: 'unit'
}
});
};