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