forked from hjyue1/react-do-tree-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.js
More file actions
23 lines (23 loc) · 823 Bytes
/
jest.config.js
File metadata and controls
23 lines (23 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = {
verbose: true,
moduleFileExtensions: ['js'],
moduleDirectories: ['node_modules', 'src'],
moduleNameMapper: {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/jest/__mocks__/fileMock.js",
"\\.(css|sass)$": "<rootDir>/jest/__mocks__/styleMock.js"
},
collectCoverage: true,
coverageDirectory: '<rootDir>/jest/__jest__/',
collectCoverageFrom: [
'<rootDir>/src/*.{js,jsx}',
'!**/_mocks_/**',
'!**/__mocks__/**',
'!**/__tests__/**'
],
transform: {
'^.+\\.js$': 'babel-jest'
},
transformIgnorePatterns: ['/node_modules/(?!(ol))'],
testPathIgnorePatterns: ['node_modules/', '\\.snap$', '\\.glsl$'],
setupFiles: ['<rootDir>/jest/__jest__/setup.js'],
}