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

17 lines
356 B
JavaScript

import React from 'react';
import { shallow } from 'enzyme';
import CheckboxCard from './CheckboxCard';
describe('<CheckboxCard />', () => {
let wrapper;
test('initially renders without crashing', () => {
wrapper = shallow(
<CheckboxCard
name="Foobar"
itemId={5}
/>
);
expect(wrapper.length).toBe(1);
});
});