mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
f307e95459
Migrate formatting to prettier for zone.js from clang-format PR Close #55427
11 lines
340 B
JavaScript
11 lines
340 B
JavaScript
module.exports = function (config) {
|
|
require('./karma-build.conf.js')(config);
|
|
|
|
config.plugins.push(require('karma-mocha'));
|
|
config.frameworks.push('mocha');
|
|
config.client.mocha = {
|
|
timeout: 5000, // copied timeout for Jasmine in WebSocket.spec (otherwise Mochas default timeout
|
|
// at 2 sec is to low for the tests)
|
|
};
|
|
};
|