mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
51 lines
1023 B
JavaScript
51 lines
1023 B
JavaScript
import { mount } from '@vue/test-utils';
|
|
import ActionBarIcon from '..';
|
|
|
|
test('should render default slot correctly', () => {
|
|
const wrapper = mount(ActionBarIcon, {
|
|
slots: {
|
|
default: 'Content',
|
|
},
|
|
});
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|
|
|
|
test('should render icon slot correctly', () => {
|
|
const wrapper = mount(ActionBarIcon, {
|
|
slots: {
|
|
default: 'Content',
|
|
icon: 'Custom Icon',
|
|
},
|
|
});
|
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|
|
|
|
test('should render icon slot with badge correctly', () => {
|
|
const wrapper = mount(ActionBarIcon, {
|
|
props: {
|
|
badge: '1',
|
|
},
|
|
slots: {
|
|
default: 'Content',
|
|
icon: 'Custom Icon',
|
|
},
|
|
});
|
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|
|
|
|
test('should render icon slot with dot correctly', () => {
|
|
const wrapper = mount(ActionBarIcon, {
|
|
props: {
|
|
dot: true,
|
|
},
|
|
slots: {
|
|
default: 'Content',
|
|
icon: 'Custom Icon',
|
|
},
|
|
});
|
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|