2018-09-01 12:45:42 +03:00
|
|
|
module.exports = {
|
|
|
|
coverageDirectory: '<rootDir>/coverage',
|
|
|
|
collectCoverageFrom: [
|
2021-09-19 11:57:36 +03:00
|
|
|
'src/**/*.{ts,tsx}',
|
|
|
|
'!src/*.{ts,tsx}',
|
2020-08-29 14:51:53 +03:00
|
|
|
'!src/reducers/index.ts',
|
|
|
|
'!src/**/provideServices.ts',
|
|
|
|
'!src/container/*.ts',
|
2018-09-01 12:45:42 +03:00
|
|
|
],
|
2021-09-19 11:31:53 +03:00
|
|
|
coverageThreshold: {
|
|
|
|
global: {
|
2021-09-20 22:52:46 +03:00
|
|
|
statements: 85,
|
2021-10-17 14:43:37 +03:00
|
|
|
branches: 80,
|
2021-09-19 11:31:53 +03:00
|
|
|
functions: 80,
|
2021-09-20 22:52:46 +03:00
|
|
|
lines: 85,
|
2021-09-19 11:31:53 +03:00
|
|
|
},
|
|
|
|
},
|
2022-02-27 21:12:30 +03:00
|
|
|
setupFiles: [ '<rootDir>/config/setupEnzyme.js' ],
|
|
|
|
testMatch: [ '<rootDir>/test/**/*.test.{ts,tsx}' ],
|
2019-01-06 01:16:13 +03:00
|
|
|
testEnvironment: 'jsdom',
|
2018-09-01 12:45:42 +03:00
|
|
|
testURL: 'http://localhost',
|
|
|
|
transform: {
|
2022-02-27 21:12:30 +03:00
|
|
|
'^.+\\.(ts|tsx|js)$': '<rootDir>/node_modules/babel-jest',
|
|
|
|
'^(?!.*\\.(ts|tsx|js|json)$)': '<rootDir>/config/jest/fileTransform.js',
|
2018-09-01 12:45:42 +03:00
|
|
|
},
|
2019-01-06 01:16:13 +03:00
|
|
|
transformIgnorePatterns: [
|
2022-02-27 21:12:30 +03:00
|
|
|
'<rootDir>/.stryker-tmp',
|
2019-01-06 01:16:13 +03:00
|
|
|
'[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$',
|
2022-02-27 21:12:30 +03:00
|
|
|
'^.+\\.module\\.scss$',
|
2019-01-06 01:16:13 +03:00
|
|
|
],
|
2018-09-01 12:45:42 +03:00
|
|
|
moduleNameMapper: {
|
2022-02-27 21:12:30 +03:00
|
|
|
'^.+\\.module\\.scss$': 'identity-obj-proxy',
|
2022-03-07 18:27:25 +03:00
|
|
|
// Reactstrap module resolution does not work in jest for some reason. Manually mapping it solves the problem
|
|
|
|
'reactstrap': '<rootDir>/node_modules/reactstrap/dist/reactstrap.umd.js',
|
2018-09-01 12:45:42 +03:00
|
|
|
},
|
2022-02-27 21:12:30 +03:00
|
|
|
moduleFileExtensions: [ 'js', 'ts', 'tsx', 'json' ],
|
2018-09-01 12:45:42 +03:00
|
|
|
};
|