-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.ts
51 lines (51 loc) · 1.1 KB
/
jest.config.ts
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
/* eslint-disable */
export default {
displayName: 'contentstack-js-core',
preset: './jest.preset.js',
globals: {
'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json',
},
},
transform: {
'^.+\\.[tj]s$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'js', 'html'],
collectCoverage: true,
coverageDirectory: './reports/contentstack-js-core/coverage/',
collectCoverageFrom: [
"src/**",
"!src/index.ts"
],
coverageThreshold: {
global: {
branches: 95,
functions: 95,
lines: 95,
statements: 95
}
},
reporters: [
'default',
[
'jest-html-reporters',
{
publicPath: './reports/contentstack-js-core/html',
filename: 'index.html',
expand: true,
},
],
[
'jest-junit',
{
outputDirectory: 'reports/contentstack-js-core/junit',
outputName: 'jest-junit.xml',
ancestorSeparator: ' › ',
uniqueOutputName: 'false',
suiteNameTemplate: '{filepath}',
classNameTemplate: '{classname}',
titleTemplate: '{title}',
},
],
],
};