diff --git a/packages/vant/src/image-preview/test/function-call.spec.ts b/packages/vant/src/image-preview/test/function-call.spec.ts index 61d1a56f9..d8a577bef 100644 --- a/packages/vant/src/image-preview/test/function-call.spec.ts +++ b/packages/vant/src/image-preview/test/function-call.spec.ts @@ -12,13 +12,16 @@ test('should allow to use the teleport option', async () => { }); test('should trigger onClose option correctly', async () => { + const root = document.createElement('div'); const onClose = vi.fn(); const instance = showImagePreview({ images, startPosition: 1, onClose, + teleport: root, }); + await later(); await instance?.close(); expect(onClose).toHaveBeenCalledTimes(1);