BlueWallet/__mocks__/react-native-image-picker.js
Marcos Rodriguez Velez 4ef3d7437b
REF: JS modules to TS
2023-10-23 12:12:11 -04:00

14 lines
358 B
JavaScript

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();
});