bigbuffet-rw/src/schemas/group.test.ts

7 lines
282 B
TypeScript
Raw Normal View History

import { groupSchema } from './group';
2023-03-13 12:03:50 -07:00
2023-10-08 20:18:34 -07:00
test('groupSchema with a TruthSocial group', async () => {
const data = await import('soapbox/__fixtures__/group-truthsocial.json');
2023-03-13 12:03:50 -07:00
const group = groupSchema.parse(data);
expect(group.display_name_html).toEqual('PATRIOT PATRIOTS');
});