-
Notifications
You must be signed in to change notification settings - Fork 79
/
jest.config.js
41 lines (41 loc) · 951 Bytes
/
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
module.exports = {
coverageDirectory: '<rootDir>/test-reports/coverage',
collectCoverage: true,
collectCoverageFrom: [
'./src/**',
'!./test/**'
],
globals: {
AUTH_JS: { minSupportedVersion: '5.3.1' },
PACKAGE_NAME: 'okta-react-test',
PACKAGE_VERSION: '3.14.15',
SKIP_VERSION_CHECK: '1'
},
reporters: [
'default',
'jest-junit'
],
restoreMocks: true,
moduleNameMapper: {
// avoid react conflict in yarn workspace
'^react$': '<rootDir>/node_modules/react',
'^react-dom$': '<rootDir>/node_modules/react-dom',
'^react-router-dom$': '<rootDir>/node_modules/react-router-dom'
},
roots: [
'./test/jest'
],
setupFiles: [
'./test/jest/setup.ts'
],
testEnvironment: 'jsdom',
transform: {
'^.+\\.tsx?$': ['ts-jest', {
diagnostics: {
warnOnly: true
},
tsconfig: '<rootDir>/test/jest/tsconfig.json',
isolatedModules: true
}]
},
};