mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { mount } from '@vue/test-utils'
|
|
import PageHeader from '../src/index.vue'
|
|
|
|
const AXIOM = 'Rem is the best girl'
|
|
|
|
describe('PageHeader.vue', () => {
|
|
test('render test', () => {
|
|
const wrapper = mount(PageHeader, {
|
|
props: { content: AXIOM },
|
|
})
|
|
expect(wrapper.find('.el-page-header__content').text()).toEqual(AXIOM)
|
|
})
|
|
|
|
test('slot content', () => {
|
|
const wrapper = mount(PageHeader, {
|
|
slots: { content: AXIOM },
|
|
})
|
|
expect(wrapper.find('.el-page-header__content').text()).toEqual(AXIOM)
|
|
})
|
|
|
|
test('prop title', () => {
|
|
const wrapper = mount(PageHeader, {
|
|
props: { title: AXIOM },
|
|
})
|
|
expect(wrapper.find('.el-page-header__title').text()).toEqual(AXIOM)
|
|
})
|
|
|
|
test('slot prop', () => {
|
|
const wrapper = mount(PageHeader, {
|
|
slots: { title: AXIOM },
|
|
})
|
|
expect(wrapper.find('.el-page-header__title').text()).toEqual(AXIOM)
|
|
})
|
|
|
|
test('event back', async () => {
|
|
const wrapper = mount(PageHeader, {
|
|
props: { content: AXIOM },
|
|
})
|
|
|
|
await wrapper.find('.el-icon-back').trigger('click')
|
|
expect(wrapper.emitted('back')).toBeDefined()
|
|
})
|
|
})
|