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