import React from 'react';
import { mount } from 'enzyme';
import CheckboxCard from '../../src/components/AddRole/CheckboxCard';
describe('', () => {
let wrapper;
test('initially renders without crashing', () => {
wrapper = mount(
);
expect(wrapper.length).toBe(1);
wrapper.unmount();
});
});