diff options
Diffstat (limited to 'spec/javascript/components/display_name.test.jsx')
-rw-r--r-- | spec/javascript/components/display_name.test.jsx | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/javascript/components/display_name.test.jsx b/spec/javascript/components/display_name.test.jsx deleted file mode 100644 index 7072e653e..000000000 --- a/spec/javascript/components/display_name.test.jsx +++ /dev/null @@ -1,27 +0,0 @@ -import { expect } from 'chai'; -import { render } from 'enzyme'; -import Immutable from 'immutable'; - -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'); - }); -}); |