import React from 'react'; import DisplayName from '../../../app/javascript/mastodon/components/display_name'; import { expect } from 'chai'; import { render } from 'enzyme'; import { fromJS } from 'immutable'; describe('', () => { xit('renders display name + account name', () => { const account = fromJS({ username: 'bar', acct: 'bar@baz', display_name_html: '

Foo

', }); const wrapper = render(); expect(wrapper).to.have.text('Foo @bar@baz'); }); });