import { expect } from 'chai';
import { shallow } from 'enzyme';
import LoadingIndicator from '../../../app/assets/javascripts/components/components/loading_indicator'
describe('', function() {
it('renders text that indicates loading', function() {
const wrapper = shallow();
expect(wrapper.text()).to.match(/loading/i);
});
});