mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-06 22:56:12 -04:00
* Create navigation test for PhotoGallery * Code and test land user on Suggestions when one photo imported
9 lines
266 B
JavaScript
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()
|
|
};
|