mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 10:35:18 +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: false,
|
||
|
browsers: ['ChromeHeadless_no_sandbox'],
|
||
|
browserNoActivityTimeout: 300000,
|
||
|
browserDisconnectTimeout: 300000,
|
||
|
captureTimeout: 300000,
|
||
|
customLaunchers: {
|
||
|
ChromeHeadless_no_sandbox: {
|
||
|
base: 'ChromeHeadless',
|
||
|
flags: ['--no-sandbox', '--disable-setuid-sandbox', '--headless', '--disable-gpu'],
|
||
|
},
|
||
|
},
|
||
|
singleRun: true,
|
||
|
restartOnFileChange: false,
|
||
|
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.
|
||
|
},
|
||
|
});
|
||
|
};
|