mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
* Get a few mocks working in __mocks__ folder * Move more mocks into __mocks__ * Move mocks * Move zustand mock * Add more mocks to __mocks__ * More mocks * Move more files to __mocks__ and audit existing mocks * Mock react navigation in __mocks__ * Restore test to help with imports after jest env torn down * Add fake timer to integration test with userEvent * Add RN paper mock
12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
const mockErrorHandler = error => {
|
|
console.log( error );
|
|
};
|
|
|
|
export const setJSExceptionHandler = jest
|
|
.fn()
|
|
.mockImplementation( () => mockErrorHandler() );
|
|
|
|
export const setNativeExceptionHandler = jest
|
|
.fn()
|
|
.mockImplementation( () => mockErrorHandler() );
|