BlueWallet/__mocks__/react-native-image-picker.ts
2024-03-10 17:44:22 +00:00

14 lines
358 B
TypeScript

import { NativeModules } from 'react-native';
// Mock the ImagePickerManager native module to allow us to unit test the JavaScript code
NativeModules.ImagePickerManager = {
showImagePicker: jest.fn(),
launchCamera: jest.fn(),
launchImageLibrary: jest.fn(),
};
// Reset the mocks before each test
global.beforeEach(() => {
jest.resetAllMocks();
});