mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
1d13ebb05d
* feat: drop jest * test: remove ssr * test: rename * chore: update tsconfig
81 lines
2.0 KiB
TypeScript
81 lines
2.0 KiB
TypeScript
import { describe, expect, test } from 'vitest'
|
|
import makeMount from '@element-plus/test-utils/make-mount'
|
|
import Empty from '../src/empty.vue'
|
|
|
|
const AXIOM = 'Rem is the best girl'
|
|
|
|
describe('Empty.vue', () => {
|
|
const mount = makeMount(Empty, {})
|
|
test('render test', () => {
|
|
const wrapper = mount({
|
|
slots: {
|
|
default: AXIOM,
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-empty__image').exists()).toBe(true)
|
|
expect(wrapper.find('.el-empty__description').exists()).toBe(true)
|
|
expect(wrapper.find('.el-empty__bottom').exists()).toBe(true)
|
|
})
|
|
|
|
test('should render image props', () => {
|
|
const wrapper = mount({
|
|
props: {
|
|
image: AXIOM,
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-empty__image img').exists()).toBe(true)
|
|
})
|
|
|
|
test('should render imageSize props', async () => {
|
|
const wrapper = mount({
|
|
props: {
|
|
imageSize: 500,
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-empty__image').attributes('style')).toContain(
|
|
'width: 500px'
|
|
)
|
|
await wrapper.setProps({
|
|
imageSize: 200,
|
|
})
|
|
expect(wrapper.find('.el-empty__image').attributes('style')).toContain(
|
|
'width: 200px'
|
|
)
|
|
})
|
|
|
|
test('should render description props', () => {
|
|
const wrapper = mount({
|
|
props: {
|
|
description: AXIOM,
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-empty__description').text()).toEqual(AXIOM)
|
|
})
|
|
test('should render image slots', () => {
|
|
const wrapper = mount({
|
|
slots: {
|
|
image: AXIOM,
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-empty__image').text()).toEqual(AXIOM)
|
|
})
|
|
|
|
test('should render description slots', () => {
|
|
const wrapper = mount({
|
|
slots: {
|
|
description: AXIOM,
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-empty__description').text()).toEqual(AXIOM)
|
|
})
|
|
|
|
test('should render default slots', () => {
|
|
const wrapper = mount({
|
|
slots: {
|
|
default: AXIOM,
|
|
},
|
|
})
|
|
expect(wrapper.find('.el-empty__bottom').text()).toEqual(AXIOM)
|
|
})
|
|
})
|