forked from angular/zone.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma-base.conf.js
54 lines (44 loc) · 1.54 KB
/
karma-base.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
43
44
45
46
47
48
49
50
51
52
53
54
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
module.exports = function (config) {
config.set({
basePath: '',
files: [
'node_modules/systemjs/dist/system-polyfills.js',
'node_modules/systemjs/dist/system.src.js',
'node_modules/whatwg-fetch/fetch.js',
{pattern: 'node_modules/rxjs/**/**/*.js', included: false, watched: false },
{pattern: 'node_modules/rxjs/**/**/*.js.map', included: false, watched: false },
{pattern: 'node_modules/rxjs/**/*.js', included: false, watched: false },
{pattern: 'node_modules/es6-promise/**/*.js', included: false, watched: false },
{pattern: 'node_modules/rxjs/**/*.js.map', included: false, watched: false },
{pattern: 'test/assets/**/*.*', watched: true, served: true, included: false},
{pattern: 'build/**/*.js.map', watched: true, served: true, included: false},
{pattern: 'build/**/*.js', watched: true, served: true, included: false}
],
plugins: [
require('karma-chrome-launcher'),
require('karma-firefox-launcher'),
require('karma-sourcemap-loader')
],
preprocessors: {
'**/*.js': ['sourcemap']
},
exclude: [
'test/microtasks.spec.ts'
],
reporters: ['progress'],
//port: 9876,
colors: true,
logLevel: config.LOG_INFO,
browsers: ['Firefox'],
captureTimeout: 60000,
autoWatch: true,
singleRun: false
});
};