2016-10-18 00:54:49 +00:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import { render } from 'enzyme';
|
|
|
|
import Immutable from 'immutable';
|
|
|
|
|
|
|
|
import DisplayName from '../../../app/assets/javascripts/components/components/display_name'
|
|
|
|
|
|
|
|
describe('<DisplayName />', () => {
|
2016-10-20 15:34:44 +00:00
|
|
|
it('renders display name + account name', () => {
|
|
|
|
const account = Immutable.fromJS({
|
|
|
|
username: 'bar',
|
|
|
|
acct: 'bar@baz',
|
|
|
|
display_name: 'Foo'
|
|
|
|
});
|
|
|
|
const wrapper = render(<DisplayName account={account} />);
|
|
|
|
expect(wrapper).to.have.text('Foo @bar@baz');
|
2016-10-18 00:54:49 +00:00
|
|
|
});
|
|
|
|
|
2016-10-20 15:34:44 +00:00
|
|
|
it('renders the username + account name if display name is empty', () => {
|
|
|
|
const account = Immutable.fromJS({
|
|
|
|
username: 'bar',
|
|
|
|
acct: 'bar@baz',
|
|
|
|
display_name: ''
|
|
|
|
});
|
|
|
|
const wrapper = render(<DisplayName account={account} />);
|
|
|
|
expect(wrapper).to.have.text('bar @bar@baz');
|
2016-10-18 00:54:49 +00:00
|
|
|
});
|
|
|
|
});
|