Files
iNaturalistReactNative/tests/factories/LocalSound.js
Ken-ichi 205122d74e Sound model (#1416)
* Sound model; refactor for basic sound creation and playback
* Fetch sound attribution and license_code fields
2024-04-18 12:07:20 -07:00

9 lines
224 B
JavaScript

import { define } from "factoria";
export default define( "LocalSound", faker => ( {
id: faker.number.int( ),
attribution: faker.lorem.sentence( ),
licenseCode: "cc-by-nc",
file_url: faker.system.filePath( )
} ) );