-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkarma.conf.js
53 lines (52 loc) · 1.33 KB
/
karma.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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', 'karma-typescript'],
plugins: [
'karma-typescript',
'karma-jasmine',
'karma-chrome-launcher',
'karma-jasmine-html-reporter'
],
karmaTypescriptConfig: {
tsconfig: "./tsconfig.spec.json",
coverageOptions: {
threshold: {
file: {
statements: 100,
lines: 100,
branches: 100,
functions: 100
}
}
},
reports: {
html: {
directory: 'coverage',
subdirectory: 'outseta-api-client',
filename: 'index.html'
},
lcovonly: {
directory: 'coverage',
subdirectory: 'outseta-api-client',
filename: 'lcov.info'
},
'text-summary': null
},
},
files: [
{ pattern: 'src/**/*.ts' },
{ pattern: 'test/**/*.spec.ts' }
],
preprocessors: {
'src/**/*.ts': [ 'karma-typescript' ],
'test/**/*.spec.ts': [ 'karma-typescript' ]
},
reporters: ['progress', 'kjhtml', 'karma-typescript'],
colors: true,
logLevel: config.LOG_INFO,
browsers: ['Chrome']
});
};