mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
913aaafabb
* feat(hooks) add use-teleport hook - Add teleport hook for teleported components - Add teleport hooks hepler methods - Add coresponding testing cases * - add use teleport to the exporting entry
76 lines
1.7 KiB
TypeScript
76 lines
1.7 KiB
TypeScript
import { ref, nextTick, h } from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
|
|
import useTeleport from '../use-teleport'
|
|
|
|
const AXIOM = 'Rem is the best girl'
|
|
|
|
const Comp = {
|
|
setup() {
|
|
const appendToBody = ref(true)
|
|
const { showTeleport, hideTeleport, renderTeleport } = useTeleport(() => h('div', AXIOM), appendToBody)
|
|
|
|
return () => {
|
|
return [
|
|
h('button', {
|
|
class: 'show',
|
|
onClick: showTeleport,
|
|
}, 'show'),
|
|
h('button', {
|
|
class: 'hide',
|
|
onClick: hideTeleport,
|
|
}, 'hide'),
|
|
h('button', {
|
|
class: 'toggle',
|
|
onClick: () => {
|
|
// toggle append to body.
|
|
appendToBody.value = !appendToBody.value
|
|
},
|
|
}),
|
|
renderTeleport(),
|
|
]
|
|
}
|
|
},
|
|
}
|
|
|
|
describe('useModal', () => {
|
|
|
|
let wrapper: ReturnType<typeof mount>
|
|
|
|
beforeEach(() => {
|
|
wrapper = mount(Comp)
|
|
})
|
|
|
|
afterEach(() => {
|
|
wrapper.unmount()
|
|
})
|
|
|
|
it('should render correctly', async () => {
|
|
await nextTick()
|
|
expect(wrapper.text()).not.toContain(AXIOM)
|
|
})
|
|
|
|
it('should render teleport to the DOM', async () => {
|
|
await nextTick()
|
|
expect(wrapper.text()).not.toContain(AXIOM)
|
|
|
|
await wrapper.find('.show').trigger('click')
|
|
|
|
expect(document.body.innerHTML).toContain(AXIOM)
|
|
|
|
await wrapper.find('.hide').trigger('click')
|
|
|
|
expect(document.body.innerHTML).not.toContain(AXIOM)
|
|
})
|
|
|
|
it('should render to the current wrapper instead of document.body', async () => {
|
|
await nextTick()
|
|
|
|
expect(wrapper.text()).not.toContain(AXIOM)
|
|
|
|
await wrapper.find('.toggle').trigger('click')
|
|
|
|
expect(wrapper.text()).toContain(AXIOM)
|
|
})
|
|
})
|