openvidu/openvidu-testapp/karma.conf.js

34 lines
1007 B
JavaScript
Raw Normal View History

2017-03-08 16:50:29 +01:00
// Karma configuration file, see link for more information
2017-09-26 18:13:00 +02:00
// https://karma-runner.github.io/1.0/config/configuration-file.html
2017-03-08 16:50:29 +01:00
module.exports = function (config) {
config.set({
basePath: '',
2018-06-04 14:27:37 +02:00
frameworks: ['jasmine', '@angular-devkit/build-angular'],
2017-03-08 16:50:29 +01:00
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
2018-06-04 14:27:37 +02:00
require('@angular-devkit/build-angular/plugins/karma')
2017-03-08 16:50:29 +01:00
],
client:{
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
2018-06-04 14:27:37 +02:00
dir: require('path').join(__dirname, 'coverage'), reports: [ 'html', 'lcovonly' ],
2017-03-08 16:50:29 +01:00
fixWebpackSourcePaths: true
},
angularCli: {
environment: 'dev'
},
2017-09-26 18:13:00 +02:00
reporters: ['progress', 'kjhtml'],
2017-03-08 16:50:29 +01:00
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
});
};