mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
aaf90d99d0
* test: use vitest * test: add script and ci * chore: improve tsconfig * refactor: use-form-item * fix: remove unused * chore: improve scripts * test: improve mock * refactor: change coverage
45 lines
973 B
TypeScript
45 lines
973 B
TypeScript
import { describe, it, expect, afterEach } from 'vitest'
|
|
import {
|
|
createGlobalNode,
|
|
removeGlobalNode,
|
|
changeGlobalNodesTarget,
|
|
} from '../..'
|
|
|
|
describe('global-nodes', () => {
|
|
afterEach(() => {
|
|
document.body.innerHTML = ''
|
|
})
|
|
|
|
it('should create nodes to the root element', () => {
|
|
const el = createGlobalNode()
|
|
|
|
expect(el).not.toBeNull()
|
|
|
|
expect(document.body.firstChild).toBe(el)
|
|
})
|
|
|
|
it('should remove the recent created element', () => {
|
|
const el = createGlobalNode()
|
|
|
|
expect(document.body.firstElementChild).toBe(el)
|
|
|
|
removeGlobalNode(el)
|
|
|
|
expect(document.body.children).toHaveLength(0)
|
|
})
|
|
|
|
it('should change the target of created element', () => {
|
|
const target = createGlobalNode()
|
|
|
|
expect(document.body.firstElementChild).toBe(target)
|
|
|
|
const el = createGlobalNode()
|
|
|
|
expect(el.parentElement).toBe(document.body)
|
|
|
|
changeGlobalNodesTarget(target)
|
|
|
|
expect(el.parentElement).toBe(target)
|
|
})
|
|
})
|