123456789101112131415161718192021222324252627 |
- 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(<ApiKeysAddedModal {...props} />);
- return {
- wrapper,
- };
- };
- describe('Render', () => {
- it('should render component', () => {
- const { wrapper } = setup();
- expect(wrapper).toMatchSnapshot();
- });
- });
|