bigbuffet-rw/app/soapbox/schemas/__tests__/group.test.ts

7 lines
272 B
TypeScript
Raw Normal View History

2023-03-13 12:03:50 -07:00
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');
});