Get Jest running in NavigationPlayground

This commit is contained in:
Brent Vatne
2019-03-13 21:24:15 -07:00
parent 0cabc7fb7e
commit 65629caadd
2 changed files with 44 additions and 0 deletions

View File

@@ -39,6 +39,9 @@
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|react-navigation|@react-navigation/.*))"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"

View File

@@ -3,3 +3,44 @@ import { NativeModules } from 'react-native';
NativeModules.ReactLocalization = {
language: 'en',
};
// TODO: remove these mocks!
jest.mock('react-native-gesture-handler', () => {
const View = require('react-native/Libraries/Components/View/View');
return {
Swipeable: View,
DrawerLayout: View,
State: {},
ScrollView: View,
Slider: View,
Switch: View,
TextInput: View,
ToolbarAndroid: View,
ViewPagerAndroid: View,
DrawerLayoutAndroid: View,
WebView: View,
NativeViewGestureHandler: View,
TapGestureHandler: View,
FlingGestureHandler: View,
ForceTouchGestureHandler: View,
LongPressGestureHandler: View,
PanGestureHandler: View,
PinchGestureHandler: View,
RotationGestureHandler: View,
/* Buttons */
RawButton: View,
BaseButton: View,
RectButton: View,
BorderlessButton: View,
/* Other */
FlatList: View,
gestureHandlerRootHOC: jest.fn(),
Directions: {},
};
});
jest.mock('react-native-gesture-handler/DrawerLayout', () => {
return {
Directions: null,
};
});