bigbuffet-rw/app/soapbox/schemas/__tests__/group.test.ts
2023-03-13 14:03:50 -05:00

7 lines
No EOL
272 B
TypeScript

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