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

14 lines
276 B
JavaScript

import React from 'react';
import { mount } from 'enzyme';
import Detail from './Detail';
describe('Detail', () => {
test('renders the expected content', () => {
const wrapper = mount(
<Detail label="foo" />
);
expect(wrapper).toHaveLength(1);
});
});