mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
43 lines
774 B
JavaScript
43 lines
774 B
JavaScript
import Empty from '..';
|
|
import { mount } from '../../../test';
|
|
|
|
test('image slot', () => {
|
|
const wrapper = mount(Empty, {
|
|
scopedSlots: {
|
|
image: () => 'Custom Image',
|
|
},
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
test('description slot', () => {
|
|
const wrapper = mount(Empty, {
|
|
scopedSlots: {
|
|
description: () => 'Custom description',
|
|
},
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
test('bottom slot', () => {
|
|
const wrapper = mount(Empty, {
|
|
scopedSlots: {
|
|
default: () => 'Custom bottom',
|
|
},
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
test('render svg when image is network', () => {
|
|
const wrapper = mount(Empty, {
|
|
propsData: {
|
|
image: 'network',
|
|
},
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|