import React from 'react';
import { mount } from 'enzyme';
import SelectableCard from '../../src/components/AddRole/SelectableCard';
describe('', () => {
let wrapper;
const onClick = jest.fn();
test('initially renders without crashing when not selected', () => {
wrapper = mount(
);
expect(wrapper.length).toBe(1);
wrapper.unmount();
});
test('initially renders without crashing when selected', () => {
wrapper = mount(
);
expect(wrapper.length).toBe(1);
wrapper.unmount();
});
});