import { v4 as uuidv4 } from 'uuid'; import { groupSchema, Group, groupRelationshipSchema, GroupRelationship } from 'soapbox/schemas'; // TODO: there's probably a better way to create these factory functions. // This looks promising but didn't work on my first attempt: https://github.com/anatine/zod-plugins/tree/main/packages/zod-mock function buildGroup(props: Record = {}): Group { return groupSchema.parse(Object.assign({ id: uuidv4(), }, props)); } function buildGroupRelationship(props: Record = {}): GroupRelationship { return groupRelationshipSchema.parse(Object.assign({ id: uuidv4(), }, props)); } export { buildGroup, buildGroupRelationship };