Files
awx/awx/ui_next/src/components/ContentEmpty/ContentEmpty.test.jsx
2019-06-27 11:11:58 -04:00

12 lines
326 B
JavaScript

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