-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjest.config.js
31 lines (30 loc) · 974 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
const path = require('path')
module.exports = {
moduleDirectories: ['node_modules', path.join(__dirname, 'src')],
setupFilesAfterEnv: ['<rootDir>/setupTests.ts'],
testPathIgnorePatterns: ['<rootDir>/dist/'],
testEnvironment: 'jsdom',
rootDir: 'src',
moduleNameMapper: {
'^.+\\.css$': 'identity-obj-proxy',
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/__mocks__/fileMock.js',
'^@/(.*)$': ['<rootDir>/$1'],
'^test/(.*)$': ['<rootDir>/test/$1'],
},
moduleFileExtensions: ['ts', 'tsx', 'js'],
coveragePathIgnorePatterns: ['/node_modules/', '/test/'],
collectCoverageFrom: ['<rootDir>/**/*.tsx', '<rootDir>/**/*.ts', '!<rootDir>/*/polyfills.js'],
coverageDirectory: path.join(__dirname, 'coverage'),
coverageThreshold: {
global: {
branches: 88,
functions: 95,
lines: 95,
statements: 95,
},
},
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
}