element-plus/packages/hooks/__tests__/use-lockscreen.spec.ts
jeremywu 184af0b56f
fix(hooks): fix use-lock-screen hook (#1651)
- Fix when unmounting `use-lock-screen` could cleanup the side effects
2021-03-16 21:40:45 +08:00

63 lines
1.3 KiB
TypeScript

import { ref, nextTick, defineComponent, onMounted } from 'vue'
import { mount } from '@vue/test-utils'
import { hasClass } from '@element-plus/utils/dom'
import useLockScreen from '../use-lockscreen'
const kls = 'el-popup-parent--hidden'
const Comp = defineComponent({
setup() {
const flag = ref(false)
useLockScreen(flag)
onMounted(() => {
flag.value = true
})
},
template: `<div></div>`,
})
describe('useLockScreen', () => {
test('should lock screen when trigger is true', async () => {
const wrapper = mount({
template: `
<test-comp />
`,
components: {
'test-comp': Comp,
},
})
await nextTick()
expect(hasClass(document.body, kls)).toBe(true)
wrapper.unmount()
await nextTick()
expect(hasClass(document.body, kls)).toBe(false)
})
test('should cleanup when unmounted', async () => {
const wrapper = mount({
template: `
<test-comp v-if="shouldRender" />
`,
data() {
return {
shouldRender: true,
}
},
components: {
'test-comp': Comp,
},
})
await nextTick()
expect(hasClass(document.body, kls)).toBe(true)
wrapper.vm.shouldRender = false
await nextTick()
expect(hasClass(document.body, kls)).toBe(false)
})
})