element-plus/packages/components/empty/__tests__/empty.spec.ts
三咲智子 426a1814d0
refactor(components): refactor empty (#3522)
* refactor(components): refactor empty

* fix: tests
2021-09-22 01:41:44 +08:00

80 lines
1.9 KiB
TypeScript

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)
})
})