[ACA-3830] Fix favorites navigation (#1599)

* fix favorites navigation

* improve report and unit test

* fix ACA test
mock version directive

* lint fix

* try different startegy

* remove first split

* fix root case
This commit is contained in:
Eugenio Romano
2020-08-14 09:13:23 +01:00
committed by GitHub
parent 3edf48f050
commit b0b22170c7
9 changed files with 131 additions and 33 deletions

View File

@@ -10,6 +10,7 @@ module.exports = function(config) {
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('karma-mocha-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
@@ -20,7 +21,7 @@ module.exports = function(config) {
reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true
},
reporters: ['progress', 'kjhtml'],
reporters: ['mocha', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,