import { shallow } from 'enzyme'; import React from 'react'; import { ApiKeysAddedModal, Props } from './ApiKeysAddedModal'; const setup = (propOverrides?: object) => { const props: Props = { onDismiss: jest.fn(), apiKey: 'api key test', rootPath: 'test/path', }; Object.assign(props, propOverrides); const wrapper = shallow(); return { wrapper, }; }; describe('Render', () => { it('should render component', () => { const { wrapper } = setup(); expect(wrapper).toMatchSnapshot(); }); });