import React from 'react'; import { mountWithContexts } from '../../enzymeHelpers'; import { ToolbarAddButton } from '../../../src/components/PaginatedDataList'; describe('', () => { test('should render button', () => { const onClick = jest.fn(); const wrapper = mountWithContexts( ); const button = wrapper.find('button'); expect(button).toHaveLength(1); button.simulate('click'); expect(onClick).toHaveBeenCalled(); }); test('should render link', () => { const wrapper = mountWithContexts( ); const link = wrapper.find('Link'); expect(link).toHaveLength(1); expect(link.prop('to')).toBe('/foo'); }); });