2023-10-02 12:27:40 -07:00
|
|
|
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');
|
|
|
|
});
|