mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 02:25:17 +00:00
52 lines
2.1 KiB
JavaScript
52 lines
2.1 KiB
JavaScript
// Karma configuration file, see link for more information
|
|
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
|
|
|
module.exports = function (config) {
|
|
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'),
|
|
require('karma-coverage-istanbul-reporter'),
|
|
require('@angular-devkit/build-angular/plugins/karma'),
|
|
],
|
|
client: {
|
|
clearContext: false, // leave Jasmine Spec Runner output visible in browser
|
|
},
|
|
coverageIstanbulReporter: {
|
|
dir: require('path').join(__dirname, './coverage/control-center'),
|
|
reports: ['html', 'lcovonly', 'text-summary'],
|
|
fixWebpackSourcePaths: true,
|
|
},
|
|
reporters: ['progress', 'kjhtml', 'spec'],
|
|
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,
|
|
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.
|
|
},
|
|
});
|
|
};
|