-
Notifications
You must be signed in to change notification settings - Fork 294
/
jest.config.js
157 lines (155 loc) · 6 KB
/
jest.config.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
const esModules = [
'@angular/animations',
'@angular/cdk',
'@angular/cdk',
'@angular/common',
'@angular/compiler',
'@angular/core',
'@angular/forms',
'@angular/localize',
'@angular/material',
'@angular/platform-browser-dynamic',
'@angular/platform-browser',
'@angular/router',
'@angular/service-worker',
'@ctrl/ngx-emoji-mart',
'@danielmoncada/angular-datetime-picker',
'@siemens/ngx-datatable',
'@fortawesome/angular-fontawesome',
'@ls1intum/apollon',
'@ng-bootstrap/ng-bootstrap',
'@ngx-translate/core',
'@ngx-translate/http-loader',
'@sentry/angular',
'@swimlane/ngx-charts',
'@swimlane/ngx-graph',
'collapse-white-space',
'd3-array',
'd3-brush',
'd3-color',
'd3-dispatch',
'd3-drag',
'd3-ease',
'd3-force',
'd3-format',
'd3-hierarchy',
'd3-interpolate',
'd3-path',
'd3-quadtree',
'd3-scale',
'd3-selection',
'd3-shape',
'd3-time',
'd3-transition',
'dayjs/esm',
'export-to-csv',
'franc-min',
'internmap',
'lodash-es',
'monaco-editor',
'n-gram',
'ngx-device-detector',
'ngx-infinite-scroll',
'ngx-webstorage',
'rxjs/operators',
'trigram-utils',
].join('|');
const {
compilerOptions: { baseUrl = './' },
} = require('./tsconfig.json');
module.exports = {
testEnvironmentOptions: {
url: 'https://artemis.fake/test',
},
roots: ['<rootDir>', `<rootDir>/${baseUrl}`],
modulePaths: [`<rootDir>/${baseUrl}`],
setupFiles: ['jest-date-mock'],
cacheDirectory: '<rootDir>/build/jest-cache',
coverageDirectory: '<rootDir>/build/test-results/',
reporters: [
'default',
[
'jest-junit',
{
outputDirectory: '<rootDir>/build/test-results/',
outputName: 'TESTS-results-jest.xml',
},
],
],
collectCoverageFrom: ['src/main/webapp/**/*.{js,jsx,ts,tsx}', '!src/main/webapp/**/*.module.{js,jsx,ts,tsx}'],
coveragePathIgnorePatterns: [
'/node_modules/',
'src/main/webapp/app/account/account.route.ts',
'src/main/webapp/app/admin/admin.route.ts',
'src/main/webapp/app/exercises/quiz/manage/apollon-diagrams/apollon-diagram.route.ts',
'src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/lecture-unit-management.route.ts',
'src/main/webapp/app/exercises/quiz/manage/quiz-management.route.ts',
'src/main/webapp/app/admin/organization-management/organization-management.route.ts',
'src/main/webapp/app/admin/system-notification-management/system-notification-management.route.ts',
'src/main/webapp/app/admin/upcoming-exams-and-exercises/upcoming-exams-and-exercises.route.ts',
'src/main/webapp/app/admin/user-management/user-management.route.ts',
'src/main/webapp/app/assessment/assessment-locks/assessment-locks.route.ts',
'src/main/webapp/app/complaints/list-of-complaints/list-of-complaints.route.ts',
'src/main/webapp/app/course/dashboards/assessment-dashboard/assessment-dashboard.route.ts',
'src/main/webapp/app/course/manage/course-management.route.ts',
'src/main/webapp/app/exam/exam-scores/exam-scores.route.ts',
'src/main/webapp/app/exam/participate/exam-participation.route.ts',
'src/main/webapp/app/exercises/file-upload/manage/file-upload-exercise-management.route.ts',
'src/main/webapp/app/exercises/modeling/manage/modeling-exercise.route.ts',
'src/main/webapp/app/exam/manage/exam-management.route.ts',
'src/main/webapp/app/exercises/shared/exercise-hint/manage/exercise-hint.route.ts',
'src/main/webapp/app/core/config/prod.config.ts',
],
coverageThreshold: {
global: {
// TODO: in the future, the following values should increase to at least 90%
statements: 87.66,
branches: 73.79,
functions: 82.17,
lines: 87.72,
},
},
coverageReporters: ['clover', 'json', 'lcov', 'text-summary'],
setupFilesAfterEnv: ['<rootDir>/src/test/javascript/spec/jest-test-setup.ts', 'jest-extended/all'],
moduleFileExtensions: ['ts', 'html', 'js', 'json', 'mjs'],
transformIgnorePatterns: [`/node_modules/(?!${esModules})`],
transform: {
'^.+\\.(ts|js|mjs|html|svg)$': [
'jest-preset-angular',
{
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.html$',
isolatedModules: true,
diagnostics: {
ignoreCodes: [151001],
},
},
],
},
modulePathIgnorePatterns: ['<rootDir>/src/main/resources/templates/'],
testTimeout: 3000,
testMatch: [
'<rootDir>/src/test/javascript/spec/component/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/directive/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/entities/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/integration/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/pipe/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/service/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/util/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/interceptor/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/config/**/*.spec.ts',
'<rootDir>/src/test/javascript/spec/core/**/*.spec.ts',
],
moduleNameMapper: {
'^app/(.*)': '<rootDir>/src/main/webapp/app/$1',
'test/(.*)': '<rootDir>/src/test/javascript/spec/$1',
'@assets/(.*)': '<rootDir>/src/main/webapp/assets/$1',
'@core/(.*)': '<rootDir>/src/main/webapp/app/core/$1',
'@env': '<rootDir>/src/main/webapp/environments/environment',
'@src/(.*)': '<rootDir>/src/src/$1',
'@state/(.*)': '<rootDir>/src/app/state/$1',
'^lodash-es$': 'lodash',
'\\.css$': '<rootDir>/stub.js',
'^monaco-editor$': '<rootDir>/node_modules/monaco-editor/esm/vs/editor/editor.api.js',
},
};