gns3-web-ui/karma.conf.js

32 lines
966 B
JavaScript
Raw Permalink Normal View History

2017-09-25 11:07:52 +00:00
// Karma configuration file, see link for more information
// https://karma-runner.github.io/0.13/config/configuration-file.html
module.exports = function (config) {
config.set({
basePath: '',
2018-07-06 09:31:44 +00:00
frameworks: ['jasmine', '@angular-devkit/build-angular'],
2017-09-25 11:07:52 +00:00
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
2018-07-06 09:31:44 +00:00
require('@angular-devkit/build-angular/plugins/karma')
2017-09-25 11:07:52 +00:00
],
client:{
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
2018-07-06 09:31:44 +00:00
dir: require('path').join(__dirname, 'coverage'), reports: [ 'html', 'lcovonly' ],
2017-09-25 11:07:52 +00:00
fixWebpackSourcePaths: true
},
2023-02-01 02:57:59 +00:00
2017-09-25 11:07:52 +00:00
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
2023-02-01 02:57:59 +00:00
browsers: ['ChromeHeadless'],
2021-04-19 09:19:39 +00:00
singleRun: true
2017-09-25 11:07:52 +00:00
});
};