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
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import { nextTick } from 'vue'
|
|
import { shallowMount } from '@vue/test-utils'
|
|
import { afterEach, describe, expect, it, vi } from 'vitest'
|
|
import * as vueuse from '@vueuse/core'
|
|
import { POPPER_CONTAINER_SELECTOR, usePopperContainer } from '../src/container'
|
|
|
|
const AXIOM = 'rem is the best girl'
|
|
|
|
vi.mock('@vueuse/core', () => {
|
|
return {
|
|
isClient: true,
|
|
}
|
|
})
|
|
|
|
const mountComponent = () =>
|
|
shallowMount({
|
|
template: `<div>
|
|
${AXIOM}
|
|
</div>`,
|
|
setup() {
|
|
usePopperContainer()
|
|
},
|
|
})
|
|
|
|
describe('usePopperContainer', () => {
|
|
afterEach(() => {
|
|
document.body.innerHTML = ''
|
|
})
|
|
|
|
it('should append container to the DOM root', async () => {
|
|
mountComponent()
|
|
await nextTick()
|
|
|
|
expect(document.body.querySelector(POPPER_CONTAINER_SELECTOR)).toBeDefined()
|
|
})
|
|
|
|
it('should not append container to the DOM root', async () => {
|
|
;(vueuse as any).isClient = false
|
|
mountComponent()
|
|
await nextTick()
|
|
expect(document.body.querySelector(POPPER_CONTAINER_SELECTOR)).toBeNull()
|
|
})
|
|
})
|