import React from 'react'; import {shallow} from 'enzyme'; import IconButton from '../../../src/components/icon-button/icon-button'; import renderer from 'react-test-renderer'; describe('IconButtonComponent', () => { test('matches snapshot', () => { const onClick = jest.fn(); const title =
Text
; const imgSrc = 'imgSrc'; const className = 'custom-class-name'; const component = renderer.create( ); expect(component.toJSON()).toMatchSnapshot(); }); test('triggers callback when clicked', () => { const onClick = jest.fn(); const title =
Text
; const imgSrc = 'imgSrc'; const componentShallowWrapper = shallow( ); componentShallowWrapper.simulate('click'); expect(onClick).toHaveBeenCalled(); }); });