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