import { mount } from '@vue/test-utils' import Icon from '..' describe('Icon', () => { it('should render to a ', () => { const wrapper = mount({ render (h) { return }, }) expect(wrapper.html()).toMatchSnapshot() }) })