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