2018-11-27 09:06:26 +00:00
|
|
|
// Karma configuration file, see link for more information
|
|
|
|
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
|
|
|
|
2020-05-19 12:50:28 +00:00
|
|
|
module.exports = function (config) {
|
2018-11-30 13:26:03 +00:00
|
|
|
config.set({
|
|
|
|
basePath: '',
|
|
|
|
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
|
|
|
plugins: [
|
|
|
|
require('karma-jasmine'),
|
|
|
|
require('karma-chrome-launcher'),
|
2020-11-26 11:45:20 +00:00
|
|
|
require('karma-spec-reporter'),
|
2018-11-30 13:26:03 +00:00
|
|
|
require('karma-jasmine-html-reporter'),
|
|
|
|
require('karma-coverage-istanbul-reporter'),
|
2020-05-19 12:50:28 +00:00
|
|
|
require('@angular-devkit/build-angular/plugins/karma'),
|
2018-11-30 13:26:03 +00:00
|
|
|
],
|
|
|
|
client: {
|
2020-05-19 12:50:28 +00:00
|
|
|
clearContext: false, // leave Jasmine Spec Runner output visible in browser
|
2018-11-30 13:26:03 +00:00
|
|
|
},
|
|
|
|
coverageIstanbulReporter: {
|
2020-03-30 13:40:22 +00:00
|
|
|
dir: require('path').join(__dirname, './coverage/angular9'),
|
2018-11-30 13:26:03 +00:00
|
|
|
reports: ['html', 'lcovonly', 'text-summary'],
|
2020-05-19 12:50:28 +00:00
|
|
|
fixWebpackSourcePaths: true,
|
2018-11-30 13:26:03 +00:00
|
|
|
},
|
2020-11-26 11:45:20 +00:00
|
|
|
reporters: ['progress', 'kjhtml', 'spec'],
|
2018-11-30 13:26:03 +00:00
|
|
|
port: 9876,
|
|
|
|
colors: true,
|
|
|
|
logLevel: config.LOG_INFO,
|
|
|
|
autoWatch: true,
|
2020-11-20 15:49:03 +00:00
|
|
|
browsers: ['ChromeHeadless'],
|
2020-03-30 13:40:22 +00:00
|
|
|
singleRun: false,
|
2020-05-19 12:50:28 +00:00
|
|
|
restartOnFileChange: true,
|
2020-11-26 11:45:20 +00:00
|
|
|
specReporter: {
|
|
|
|
maxLogLines: 5, // limit number of lines logged per test
|
|
|
|
suppressErrorSummary: false, // do not print error summary
|
|
|
|
suppressFailed: false, // do not print information about failed tests
|
|
|
|
suppressPassed: false, // do not print information about passed tests
|
|
|
|
suppressSkipped: true, // do not print information about skipped tests
|
|
|
|
showSpecTiming: true, // print the time elapsed for each spec
|
|
|
|
failFast: false, // test would finish with error when a first fail occurs.
|
|
|
|
},
|
2018-11-30 13:26:03 +00:00
|
|
|
});
|
|
|
|
};
|