about summary refs log tree commit diff
path: root/__mocks__/@react-native-camera-roll/camera-roll.js
blob: 8f1aea43bd64a4bdc305f7bd81f5790cf2cef6f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
export const CameraRoll = {
  getPhotos: jest.fn().mockResolvedValue({
    edges: [
      {node: {image: {uri: 'path/to/image1.jpg'}}},
      {node: {image: {uri: 'path/to/image2.jpg'}}},
      {node: {image: {uri: 'path/to/image3.jpg'}}},
    ],
  }),
}