Updates karma to prevent cancelling tests because of timeout

This commit is contained in:
GabrielMeyer 2019-09-23 16:47:27 +02:00
parent a688bd0ffe
commit 07481feba5
1 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,10 @@ module.exports = function(config) {
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
clearContext: false, // leave Jasmine Spec Runner output visible in browser
jasmine: {
timeoutInterval: 10000
}
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, '../coverage'),