element-plus/packages/components/popconfirm/__tests__/popconfirm.test.tsx

84 lines
2.0 KiB
TypeScript

import { nextTick } from 'vue'
import { mount } from '@vue/test-utils'
import { afterEach, describe, expect, it } from 'vitest'
import { rAF } from '@element-plus/test-utils/tick'
import { POPPER_CONTAINER_SELECTOR } from '@element-plus/hooks'
import Popconfirm from '../src/popconfirm.vue'
const AXIOM = 'rem is the best girl'
const selector = '.el-popper'
describe('Popconfirm.vue', () => {
afterEach(() => {
document.body.innerHTML = ''
})
it('render test', async () => {
const wrapper = mount(() => (
<>
<Popconfirm
attachTo="body"
v-slots={{
reference: () => <div class="reference">{AXIOM}</div>,
}}
/>
</>
))
await nextTick()
expect(document.querySelector(selector)!.getAttribute('style')).toContain(
'display: none'
)
await wrapper.find('.reference').trigger('click')
await nextTick()
await rAF()
expect(
document.querySelector(selector)!.getAttribute('style')
).not.toContain('display: none')
})
describe('teleported API', () => {
it('should mount on popper container', async () => {
expect(document.body.innerHTML).toBe('')
mount(() => (
<>
<Popconfirm
attachTo="body"
v-slots={{
reference: () => <div class="reference">{AXIOM}</div>,
}}
/>
</>
))
await nextTick()
expect(
document.body.querySelector(POPPER_CONTAINER_SELECTOR)!.innerHTML
).not.toBe('')
})
it('should not mount on the popper container', async () => {
expect(document.body.innerHTML).toBe('')
mount(() => (
<>
<Popconfirm
attachTo="body"
teleported={false}
v-slots={{
reference: () => <div class="reference">{AXIOM}</div>,
}}
/>
</>
))
await nextTick()
expect(
document.body.querySelector(POPPER_CONTAINER_SELECTOR)!.innerHTML
).toBe('')
})
})
})