forked from angular/zone.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma-evergreen-dist.conf.js
34 lines (32 loc) · 1.27 KB
/
karma-evergreen-dist.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
/**
* @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) {
require('./karma-base.conf.js')(config);
const files = config.files;
config.files = [];
for (let i = 0; i < files.length; i ++) {
if (files[i] !== 'node_modules/core-js-bundle/index.js') {
config.files.push(files[i]);
}
}
config.files.push('build/test/wtf_mock.js');
config.files.push('build/test/test_fake_polyfill.js');
config.files.push('build/test/custom_error.js');
config.files.push({pattern: 'dist/zone-evergreen.js', type: 'module'});
config.files.push('dist/zone-patch-canvas.js');
config.files.push('dist/zone-patch-fetch.js');
config.files.push('dist/webapis-media-query.js');
config.files.push('dist/webapis-notification.js');
config.files.push('dist/zone-patch-user-media.js');
config.files.push('dist/zone-patch-resize-observer.js');
config.files.push('dist/task-tracking.js');
config.files.push('dist/wtf.js');
config.files.push('dist/zone-testing.js');
config.files.push({pattern: 'build/test/browser/custom-element.spec.js', type: 'module'});
config.files.push('build/test/main.js');
};