dashboard/karma.conf.js

52 lines
2.1 KiB
JavaScript
Raw Normal View History

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'),
require('karma-jasmine-html-reporter'),
require('karma-spec-reporter'),
2018-11-30 13:26:03 +00:00
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
},
reporters: ['progress', 'kjhtml', 'spec'],
2018-11-30 13:26:03 +00:00
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['ChromeHeadless_no_sandbox'],
browserNoActivityTimeout: 30 * 60 * 1000,
browserDisconnectTimeout: 30 * 60 * 1000,
captureTimeout: 300000,
customLaunchers: {
ChromeHeadless_no_sandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox', '--disable-setuid-sandbox', '--headless', '--disable-gpu'],
},
},
singleRun: false,
2020-05-19 12:50:28 +00:00
restartOnFileChange: true,
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
});
};