mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-09-15 23:29:41 -04:00
10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
import { define } from "factoria";
|
|
|
|
export default define( "LocalProjectObservation", faker => ( {
|
|
uuid: faker.string.uuid( ),
|
|
id: faker.number.int( ),
|
|
projectId: faker.number.int( ),
|
|
wasSynced: jest.fn( ( ) => false ),
|
|
needsSync: jest.fn( ( ) => true ),
|
|
} ) );
|