Merge pull request #5047 from GabrielInTheWorld/configureJasmine

Updates karma to prevent cancelling tests because of timeout
This commit is contained in:
Sean 2019-09-23 18:16:52 +02:00 committed by GitHub
commit e3270d4302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
module.exports = function(config) {
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
@ -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'),