forked from quran/quran.com-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
41 lines (40 loc) · 1.1 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
const threshold = {
statements: 50,
branches: 50,
functions: 50,
lines: 50,
};
module.exports = {
// coverageReporters: ['lcov'],
coverageThreshold: {
global: {
statements: 85,
branches: 80,
functions: 85,
lines: 85,
},
'./src/components/**/*.{ts,tsx,js,jsx}': threshold,
'./src/containers/**/*.{ts,tsx,js,jsx}': threshold,
},
coveragePathIgnorePatterns: ['/node_modules/', '/dist/'],
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
automock: false,
setupFiles: ['./setupJest.js'],
moduleNameMapper: {
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/tests/__mocks__/fileMock.js',
'\\.(css|scss)$': '<rootDir>/tests/__mocks__/styleMock.js',
},
globals: {
__CLIENT__: true,
__SERVER__: false,
__DEVELOPMENT__: false,
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
'^.+\\.jsx?$': '<rootDir>/node_modules/babel-jest',
},
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
clearMocks: true,
};