-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathjest.config.js
More file actions
46 lines (46 loc) · 1.57 KB
/
jest.config.js
File metadata and controls
46 lines (46 loc) · 1.57 KB
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
42
43
44
45
46
module.exports = {
preset: 'react-native',
transformIgnorePatterns: [
'node_modules/(?!(@react-native|react-native|react-native-ui-lib|react-native-animatable|react-native-reanimated|react-native-webview)/)',
],
transform: {
'\\.[jt]sx?$': 'babel-jest',
},
roots: [
'<rootDir>/src/',
'<rootDir>/playground/src/',
'<rootDir>/integration/',
'<rootDir>/scripts/',
'<rootDir>/playground/e2e/',
'<rootDir>/autolink/',
],
setupFilesAfterEnv: ['@testing-library/jest-native/extend-expect', './jest-setup.js'],
testPathIgnorePatterns: ['/node_modules/', '<rootDir>/lib/'],
moduleNameMapper: {
'^react-native$': '<rootDir>/node_modules/react-native',
'^react-native-gesture-handler$': '<rootDir>/node_modules/react-native-gesture-handler',
'^react-native-webview$': '<rootDir>/__mocks__/react-native-webview.js',
'react-native-navigation/Mock': '<rootDir>/src/Mock/index',
'react-native-navigation': '<rootDir>/src',
'^src$': '<rootDir>/src',
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/playground/img/layouts@2x.png',
},
collectCoverageFrom: [
'src/**/*.(ts|tsx)',
'Mock/**/*.(ts|tsx)',
'integration/**/*.js',
'!dist/index.js',
'!dist/Navigation.js',
'!dist/adapters/**/*',
'!dist/interfaces/**/*',
'!dist/**/*.test.*',
'!integration/**/*.test.*',
'!integration/*.test.*',
'!e2e/**/*test.js',
],
resetMocks: true,
resetModules: true,
coverageReporters: ['json', 'lcov', 'text', 'html'],
testEnvironment: 'node',
};