about summary refs log tree commit diff
path: root/spec/javascript/components/display_name.test.jsx
blob: c25eb853010edcc89ec03952fa468d6cccb2fd86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { expect } from 'chai';
import { render } from 'enzyme';
import Immutable  from 'immutable';

import DisplayName from '../../../app/assets/javascripts/components/components/display_name'

describe('<DisplayName />', () => {
  const account = Immutable.fromJS({
    username: 'bar',
    acct: 'bar@baz',
    display_name: 'Foo'
  });

  const wrapper = render(<DisplayName account={account} />);

  it('renders display name', () => {
    expect(wrapper.text()).to.match(/Foo @bar@baz/);
  });
});