mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
25 lines
530 B
TypeScript
25 lines
530 B
TypeScript
|
import makeMount from '@element-plus/test-utils/make-mount'
|
||
|
import SkeletonItem from '../src/index.vue'
|
||
|
|
||
|
describe('<skeleton-item />', () => {
|
||
|
const mount = makeMount(SkeletonItem, {})
|
||
|
|
||
|
test('should render correctly', () => {
|
||
|
const wrapper = mount()
|
||
|
|
||
|
expect(wrapper.find('.el-skeleton__text').exists()).toBe(true)
|
||
|
})
|
||
|
|
||
|
test('should render image placeholder', () => {
|
||
|
|
||
|
const wrapper = mount({
|
||
|
props: {
|
||
|
variant: 'image',
|
||
|
},
|
||
|
})
|
||
|
|
||
|
expect(wrapper.find('svg').exists()).toBe(true)
|
||
|
})
|
||
|
|
||
|
})
|