mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
b97ac7cfb8
* refactor(components): [teleport] refactor * chore: re-order imports
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import { mount } from '@vue/test-utils'
|
|
import Teleport from '../src/teleport.vue'
|
|
import type { VueWrapper } from '@vue/test-utils'
|
|
import type { TeleportInstance } from '../src/teleport'
|
|
|
|
const AXIOM = 'rem is the best girl'
|
|
|
|
describe('ElTelport', () => {
|
|
let wrapper: VueWrapper<TeleportInstance>
|
|
|
|
beforeEach(() => {
|
|
wrapper = mount(Teleport, {
|
|
slots: { default: () => AXIOM },
|
|
})
|
|
})
|
|
|
|
afterEach(() => {
|
|
wrapper.unmount()
|
|
})
|
|
|
|
it('should render slot correctly', () => {
|
|
expect(wrapper.text()).toBe('')
|
|
expect(document.body.textContent).toBe(AXIOM)
|
|
expect(wrapper.vm.containerRef).toBeDefined()
|
|
})
|
|
|
|
describe('props', () => {
|
|
it('should be able to set customized style', async () => {
|
|
const style = {
|
|
color: 'red',
|
|
}
|
|
|
|
await wrapper.setProps({ style })
|
|
expect(getComputedStyle(wrapper.vm?.containerRef!).color).toBe(
|
|
style.color
|
|
)
|
|
})
|
|
|
|
it('should be able to set z-index', async () => {
|
|
const zIndex = '10000'
|
|
await wrapper.setProps({ zIndex })
|
|
expect(getComputedStyle(wrapper.vm?.containerRef!).zIndex).toBe(zIndex)
|
|
})
|
|
})
|
|
})
|