Bluesky app fork with some witchin' additions 馃挮
1export const CameraRoll = { 2 getPhotos: jest.fn().mockResolvedValue({ 3 edges: [ 4 {node: {image: {uri: 'path/to/image1.jpg'}}}, 5 {node: {image: {uri: 'path/to/image2.jpg'}}}, 6 {node: {image: {uri: 'path/to/image3.jpg'}}}, 7 ], 8 }), 9}