mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
23 lines
527 B
TypeScript
23 lines
527 B
TypeScript
import makeMount from '@element-plus/test-utils/make-mount'
|
|
import SkeletonItem from '../src/item.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)
|
|
})
|
|
})
|