test(router): increase Karma timers and add polyfills for old browsers

This commit is contained in:
Marc Laval 2016-08-09 16:17:55 +02:00 committed by Alex Rickabaugh
parent 2a942e49ac
commit 4728f29f67
1 changed files with 7 additions and 2 deletions

View File

@ -12,6 +12,7 @@ module.exports = function(config) {
// Polyfills.
'node_modules/es6-shim/es6-shim.js',
'node_modules/reflect-metadata/Reflect.js',
'shims_for_IE.js',
// System.js for module loading
'node_modules/systemjs/dist/system-polyfills.js',
@ -76,6 +77,10 @@ module.exports = function(config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
singleRun: false,
captureTimeout: 60000,
browserDisconnectTimeout : 60000,
browserDisconnectTolerance : 3,
browserNoActivityTimeout : 60000
});
};