Fixed a logging problem
[holmes/rule-management.git] / rulemgt-frontend / karma.conf.js
1 /* Copyright 2018 ZTE Corporation.
2  *
3  *Licensed under the Apache License, Version 2.0 (the "License");
4  *you may not use this file except in compliance with the License.
5  *You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 // Karma configuration file, see link for more information
16 // https://karma-runner.github.io/1.0/config/configuration-file.html
17
18 module.exports = function (config) {
19     config.set({
20         basePath: '',
21         frameworks: ['jasmine', '@angular/cli'],
22         plugins: [
23             require('karma-jasmine'),
24             require('karma-chrome-launcher'),
25             require('karma-jasmine-html-reporter'),
26             require('karma-coverage-istanbul-reporter'),
27             require('@angular/cli/plugins/karma')
28         ],
29         client: {
30             clearContext: false // leave Jasmine Spec Runner output visible in browser
31         },
32         coverageIstanbulReporter: {
33             reports: ['html', 'lcovonly'],
34             fixWebpackSourcePaths: true
35         },
36         angularCli: {
37             environment: 'dev'
38         },
39         reporters: ['progress', 'kjhtml'],
40         port: 9876,
41         colors: true,
42         logLevel: config.LOG_INFO,
43         autoWatch: true,
44         browsers: ['Chrome'],
45         singleRun: false
46     });
47 };