36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
|
/**
|
||
|
* @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/browser-env-setup.js');
|
||
|
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');
|
||
|
};
|