about summary refs log tree commit diff
path: root/__mocks__/react-native-image-crop-picker.js
blob: 9f901dfacb9fa84cbe5133710b1b6b65b01efb5d (plain) (blame)
1
2
3
4
5
6
7
8
9
export const openPicker = jest
  .fn()
  .mockImplementation(() => Promise.resolve({uri: ''}))
export const openCamera = jest
  .fn()
  .mockImplementation(() => Promise.resolve({uri: ''}))
export const openCropper = jest
  .fn()
  .mockImplementation(() => Promise.resolve({uri: ''}))