about summary refs log tree commit diff
path: root/spec/javascript/components/display_name.test.js
blob: d6dc7edc091ebd4d91ba715cdb922aa90d6f8f67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { expect } from 'chai';
import { render } from 'enzyme';
import Immutable  from 'immutable';
import React from 'react';
import DisplayName from '../../../app/javascript/mastodon/components/display_name';

describe('<DisplayName />', () => {
  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');
  });

  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');
  });
});