2017-09-30 04:29:56 +02:00
|
|
|
import React from 'react';
|
|
|
|
import DisplayName from '../../../app/javascript/mastodon/components/display_name';
|
|
|
|
|
2016-10-18 02:54:49 +02:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import { render } from 'enzyme';
|
2017-07-11 01:00:14 +02:00
|
|
|
import { fromJS } from 'immutable';
|
2016-10-18 02:54:49 +02:00
|
|
|
|
|
|
|
describe('<DisplayName />', () => {
|
2017-09-30 04:29:56 +02:00
|
|
|
xit('renders display name + account name', () => {
|
2017-07-11 01:00:14 +02:00
|
|
|
const account = fromJS({
|
2016-10-20 17:34:44 +02:00
|
|
|
username: 'bar',
|
|
|
|
acct: 'bar@baz',
|
2017-08-07 20:32:03 +02:00
|
|
|
display_name_html: '<p>Foo</p>',
|
2016-10-20 17:34:44 +02:00
|
|
|
});
|
|
|
|
const wrapper = render(<DisplayName account={account} />);
|
|
|
|
expect(wrapper).to.have.text('Foo @bar@baz');
|
2016-10-18 02:54:49 +02:00
|
|
|
});
|
|
|
|
});
|