import React from 'react'; import { shallow } from 'enzyme'; import { CardLink } from '../'; describe('CardLink', () => { it('should render with "card-link" class', () => { const wrapper = shallow(Yo!); expect(wrapper.text()).toBe('Yo!'); expect(wrapper.hasClass('card-link')).toBe(true); }); it('should render additional classes', () => { const wrapper = shallow(Yo!); expect(wrapper.hasClass('other')).toBe(true); expect(wrapper.hasClass('card-link')).toBe(true); }); it('should render custom tag', () => { const wrapper = shallow(Yo!); expect(wrapper.text()).toBe('Yo!'); expect(wrapper.hasClass('card-link')).toBe(true); expect(wrapper.find('button').length).toBe(1); }); });