Files
iNaturalistReactNative/tests/mocks/react-native-image-picker.js
Amanda Bullington 92cafdde83 Land user on Suggestions when one photo imported (#1824)
* Create navigation test for PhotoGallery

* Code and test land user on Suggestions when one photo imported
2024-07-16 14:47:02 -07:00

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