bigbuffet-rw/app/soapbox/components/__tests__/display_name-test.js

17 lines
495 B
JavaScript
Raw Normal View History

import React from 'react';
2022-03-21 11:09:01 -07:00
import { normalizeAccount } from 'soapbox/normalizers';
2020-09-11 10:38:42 -07:00
import { createComponent } from 'soapbox/test_helpers';
2022-01-10 14:01:24 -08:00
import DisplayName from '../display_name';
2020-03-27 13:59:38 -07:00
describe('<DisplayName />', () => {
it('renders display name + account name', () => {
2022-03-21 11:09:01 -07:00
const account = normalizeAccount({ acct: 'bar@baz' });
2020-09-11 10:38:42 -07:00
const component = createComponent(<DisplayName account={account} />);
2020-03-27 13:59:38 -07:00
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
});