bigbuffet-rw/src/schemas/group.test.ts
2023-10-08 22:31:36 -05:00

7 lines
No EOL
282 B
TypeScript

import { groupSchema } from './group';
test('groupSchema with a TruthSocial group', async () => {
const data = await import('soapbox/__fixtures__/group-truthsocial.json');
const group = groupSchema.parse(data);
expect(group.display_name_html).toEqual('PATRIOT PATRIOTS');
});