Files
iNaturalistReactNative/tests/factories/RemoteObservationPhoto.js
Ken-ichi d3f1f8ed6e View photos in MediaViewer from ObsDetail (#962)
* Unit tests for MediaViewer
* Added editable prop to MediaViewer
* MediaViewer navigation test
* Made MediaViewer a modal
2023-12-13 09:33:06 -08:00

10 lines
244 B
JavaScript

import { define } from "factoria";
import photoFactory from "./RemotePhoto";
export default define( "RemoteObservationPhoto", faker => ( {
id: faker.number.int( ),
photo: photoFactory( "RemotePhoto" ),
uuid: faker.string.uuid( )
} ) );