import React from 'react'; import { shallow } from 'enzyme'; import { IconName } from '../Icon'; import BaseButton from './BaseButton'; import { BaseButtonSize } from './BaseButton.types'; describe('BaseButton', () => { it('should render correctly', () => { const wrapper = shallow( null} />, ); expect(wrapper).toMatchSnapshot(); }); });