mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import { effectDispose } from '../../src/utils/vue/effect-dispose'
|
|
|
|
describe('effectDispose', () => {
|
|
it('should return false if getCurrentScope is null', () => {
|
|
expect(effectDispose(() => {})).toBe(false)
|
|
})
|
|
})
|