mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 15:53:36 -05:00
12 lines
334 B
JavaScript
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);
|
|
});
|
|
});
|