forked from klee-contrib/focus-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest-config.js
More file actions
20 lines (20 loc) · 745 Bytes
/
jest-config.js
File metadata and controls
20 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
globals: {
__DEV__: true,
__IS_VERTIGO__: false
},
automock: false,
unmockedModulePathPatterns: [
'<rootDir>/node_modules/prop-types',
'<rootDir>/node_modules/create-react-class',
'<rootDir>/node_modules/react',
'<rootDir>/node_modules/react-dom',
'<rootDir>/node_modules/react-addons-test-utils',
'<rootDir>/node_modules/fbjs',
'<rootDir>/node_modules/numeral',
'<rootDir>/node_modules/i18next-client',
'<rootDir>/node_modules/focus-core'
],
testPathIgnorePatterns: ['/node_modules/', 'fixture.js', '.history', '.localhistory', 'test-focus.jsx'],
transformIgnorePatterns: ['/node_modules(?!\/focus-core)/']
}