mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-09 16:32:12 -05:00
12 lines
373 B
JavaScript
12 lines
373 B
JavaScript
import { expect } from 'chai';
|
|
import { shallow } from 'enzyme';
|
|
|
|
import LoadingIndicator from '../../../app/assets/javascripts/components/components/loading_indicator'
|
|
|
|
describe('<LoadingIndicator />', () => {
|
|
it('renders text that indicates loading', () => {
|
|
const wrapper = shallow(<LoadingIndicator />);
|
|
expect(wrapper.text()).to.match(/loading/i);
|
|
});
|
|
});
|