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

7 lines
271 B
TypeScript
Raw Normal View History

import { groupSchema } from './group';
2023-03-13 12:03:50 -07:00
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');
});