import { shallow } from 'enzyme'; import * as React from 'react'; import { roleCategory } from 'roleypoly/common/types/storyData'; import { Role } from './Role'; it('fires an OnClick handler when clicked', () => { const onClickMock = jest.fn(); const view = shallow( ); view.simulate('click'); expect(onClickMock).toBeCalledWith(false); });