mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
1d13ebb05d
* feat: drop jest * test: remove ssr * test: rename * chore: update tsconfig
24 lines
578 B
TypeScript
24 lines
578 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import makeMount from '@element-plus/test-utils/make-mount'
|
|
import SkeletonItem from '../src/skeleton-item.vue'
|
|
|
|
describe('<skeleton-item />', () => {
|
|
const mount = makeMount(SkeletonItem, {})
|
|
|
|
it('should render correctly', () => {
|
|
const wrapper = mount()
|
|
|
|
expect(wrapper.find('.el-skeleton__text').exists()).toBe(true)
|
|
})
|
|
|
|
it('should render image placeholder', () => {
|
|
const wrapper = mount({
|
|
props: {
|
|
variant: 'image',
|
|
},
|
|
})
|
|
|
|
expect(wrapper.find('svg').exists()).toBe(true)
|
|
})
|
|
})
|