bigbuffet-rw/src/soapbox/schemas/__tests__/group.test.ts
2023-09-18 16:03:21 -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');
});