mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-01-12 22:51:18 +08:00
28 lines
1.0 KiB
JavaScript
28 lines
1.0 KiB
JavaScript
/* eslint-env jest */
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
|
|
import 'react-native-gesture-handler/jestSetup';
|
|
|
|
jest.mock('react-native-reanimated', () => {
|
|
const Reanimated = require('react-native-reanimated/mock');
|
|
|
|
// The mock for `call` immediately calls the callback which is incorrect
|
|
// So we override it with a no-op
|
|
Reanimated.default.call = () => {};
|
|
|
|
return Reanimated;
|
|
});
|
|
|
|
// Silence the warning: Animated: `useNativeDriver` is not supported because the native animated module is missing
|
|
jest.mock('react-native/Libraries/Animated/src/NativeAnimatedHelper');
|
|
|
|
const error = console.error;
|
|
|
|
console.error = (...args) =>
|
|
// Suppress error messages regarding error boundary in tests
|
|
/(Consider adding an error boundary to your tree to customize error handling behavior|React will try to recreate this component tree from scratch using the error boundary you provided|Error boundaries should implement getDerivedStateFromError)/m.test(
|
|
args[0]
|
|
)
|
|
? void 0
|
|
: error(...args);
|