-
-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathjest.config.js
More file actions
20 lines (20 loc) · 753 Bytes
/
Copy pathjest.config.js
File metadata and controls
20 lines (20 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
verbose: true,
moduleFileExtensions: ['js', 'jsx', 'json'],
transformIgnorePatterns: ['node_modules', '.history/*'],
modulePathIgnorePatterns: ['/.history/'],
moduleDirectories: ['node_modules', '.', 'src', 'src/shared'],
setupFilesAfterEnv: ['<rootDir>/__tests__/setup.js'],
snapshotSerializers: ['enzyme-to-json/serializer'],
testURL: 'http://localhost/',
collectCoverageFrom: ['src/**/*.{js,jsx}'],
transform: {
'^.+\\.jsx?$': 'babel-jest',
},
rootDir: __dirname,
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|less)$': '<rootDir>/__tests__/__mocks__/styleMock.js',
},
}