mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
test(hooks): add use-throttle-render test (#16499)
* test(hooks): add use-throttle-render test * chore(hooks): [use-throttle-render] fix lint err * chore(hooks): use sleep and concurrent * fix(hooks): [use-throttle-render] fix import error * fix(hooks): fix concurrent interfere
This commit is contained in:
parent
28174c82e9
commit
e83a18ea27
50
packages/hooks/__tests__/use-throttle-render.test.tsx
Normal file
50
packages/hooks/__tests__/use-throttle-render.test.tsx
Normal file
@ -0,0 +1,50 @@
|
||||
import { defineComponent, nextTick, ref } from 'vue'
|
||||
import { mount } from '@vue/test-utils'
|
||||
import { describe, expect, it } from 'vitest'
|
||||
import sleep from '@element-plus/test-utils/sleep'
|
||||
import { useThrottleRender } from '../use-throttle-render'
|
||||
|
||||
const Comp = defineComponent({
|
||||
setup() {
|
||||
const loading = ref(false)
|
||||
const throttled = useThrottleRender(loading, 1000)
|
||||
// Test the settimeout branch clearly: trigger the watch to record the settimeout first, and then record the settimeout again when mount.
|
||||
loading.value = true
|
||||
|
||||
return () => <div class="test-dom">{throttled.value.toString()}</div>
|
||||
},
|
||||
})
|
||||
|
||||
describe.concurrent('useThrottleRender', () => {
|
||||
it('should throttle rendering when loading is true', async () => {
|
||||
const wrapper = mount(Comp)
|
||||
await nextTick()
|
||||
expect(wrapper.find('.test-dom').text()).toBe('false') // initially false
|
||||
await sleep(1000)
|
||||
expect(wrapper.find('.test-dom').text()).toBe('true') // after throttle time, should be true
|
||||
wrapper.unmount()
|
||||
})
|
||||
|
||||
it('should return false immediately when loading is false', () => {
|
||||
const loading = ref(false)
|
||||
const throttled = useThrottleRender(loading, 1000)
|
||||
expect(throttled.value).toBe(false)
|
||||
})
|
||||
|
||||
it('should return the same value immediately when throttle is 0', () => {
|
||||
const loading = ref(true)
|
||||
const throttled = useThrottleRender(loading, 0)
|
||||
expect(throttled.value).toBe(true) // should be same as loading
|
||||
})
|
||||
|
||||
it('should throttle rendering and update when loading changes', async () => {
|
||||
const loading = ref(true)
|
||||
const throttled = useThrottleRender(loading, 1000)
|
||||
expect(throttled.value).toBe(false) // initially false
|
||||
loading.value = false
|
||||
expect(throttled.value).toBe(false) // should remain false immediately
|
||||
await sleep(1000)
|
||||
loading.value = true
|
||||
expect(throttled.value).toBe(false) // should still be false after throttle time
|
||||
})
|
||||
})
|
Loading…
Reference in New Issue
Block a user