mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-04-19 14:28:02 -04:00
Additionally, * Adds tests for ID withdraw and restore * Renames withdrawOrRestoreIdentification function for clarity * Adds some accessibility labels for testing and accessibility Closes #1129
13 lines
334 B
JavaScript
13 lines
334 B
JavaScript
import { define } from "factoria";
|
|
|
|
import taxonFactory from "./RemoteTaxon";
|
|
import userFactory from "./RemoteUser";
|
|
|
|
export default define( "RemoteIdentification", faker => ( {
|
|
uuid: faker.string.uuid( ),
|
|
category: "improving",
|
|
current: true,
|
|
user: userFactory( "RemoteUser" ),
|
|
taxon: taxonFactory( "RemoteTaxon" )
|
|
} ) );
|