Files
awx/src/components/ContentLoading/ContentLoading.test.jsx
Michael Abashian ee56e9ccfb Reorganize file locations/directory structure (#270)
Reorganize file locations
2019-06-19 11:41:14 -04:00

12 lines
334 B
JavaScript

import React from 'react';
import { mountWithContexts } from '../../../testUtils/enzymeHelpers';
import ContentLoading from './ContentLoading';
describe('ContentLoading', () => {
test('renders the expected content', () => {
const wrapper = mountWithContexts(<ContentLoading />);
expect(wrapper).toHaveLength(1);
});
});