2018-01-16 10:09:59 -05:00
|
|
|
// 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: '',
|
2018-04-03 16:31:03 -04:00
|
|
|
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
2018-01-16 10:09:59 -05:00
|
|
|
plugins: [
|
|
|
|
require('karma-jasmine'),
|
|
|
|
require('karma-chrome-launcher'),
|
|
|
|
require('karma-jasmine-html-reporter'),
|
|
|
|
require('karma-coverage-istanbul-reporter'),
|
2018-04-03 16:31:03 -04:00
|
|
|
require('@angular-devkit/build-angular/plugins/karma')
|
2018-01-16 10:09:59 -05:00
|
|
|
],
|
|
|
|
client:{
|
|
|
|
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
|
|
|
},
|
|
|
|
coverageIstanbulReporter: {
|
2018-04-03 16:31:03 -04:00
|
|
|
dir: require('path').join(__dirname, 'coverage'), reports: [ 'html', 'lcovonly' ],
|
2018-01-16 10:09:59 -05:00
|
|
|
fixWebpackSourcePaths: true
|
|
|
|
},
|
|
|
|
angularCli: {
|
|
|
|
environment: 'dev'
|
|
|
|
},
|
|
|
|
reporters: ['progress', 'kjhtml'],
|
|
|
|
port: 9876,
|
|
|
|
colors: true,
|
|
|
|
logLevel: config.LOG_INFO,
|
|
|
|
autoWatch: true,
|
|
|
|
browsers: ['CustomChrome'],
|
|
|
|
singleRun: false,
|
|
|
|
customLaunchers: {
|
|
|
|
CustomChrome: {
|
|
|
|
base: 'Chrome',
|
|
|
|
flags: ['--no-sandbox']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|