You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
636 B
23 lines
636 B
6 months ago
|
import { shallowMount } from '@vue/test-utils';
|
||
|
import SvgIcon from '@/components/SvgIcon/index.vue';
|
||
|
describe('SvgIcon.vue', () => {
|
||
|
it('iconClass', () => {
|
||
|
const wrapper = shallowMount(SvgIcon, {
|
||
|
propsData: {
|
||
|
iconClass: 'test',
|
||
|
},
|
||
|
});
|
||
|
expect(wrapper.find('use').attributes().href).toBe('#icon-test');
|
||
|
});
|
||
|
it('className', () => {
|
||
|
const wrapper = shallowMount(SvgIcon, {
|
||
|
propsData: {
|
||
|
iconClass: 'test',
|
||
|
},
|
||
|
});
|
||
|
expect(wrapper.classes().length).toBe(1);
|
||
|
wrapper.setProps({ className: 'test' });
|
||
|
expect(wrapper.classes().includes('test')).toBe(true);
|
||
|
});
|
||
|
});
|