test(ImagePreview): fix incorrect onClose test case (#12386)

This commit is contained in:
neverland 2023-10-23 17:54:19 +08:00 committed by GitHub
parent 0fc4f07704
commit 8a7f8d7aa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);