diff --git a/src/image/Image.tsx b/src/image/Image.tsx index 19ba26291..89e7ca207 100644 --- a/src/image/Image.tsx +++ b/src/image/Image.tsx @@ -1,4 +1,3 @@ -// Utils import { ref, watch, @@ -9,6 +8,8 @@ import { defineComponent, getCurrentInstance, } from 'vue'; + +// Utils import { isDef, addUnit, @@ -36,6 +37,7 @@ export default defineComponent({ height: [Number, String], radius: [Number, String], lazyLoad: Boolean, + iconSize: [Number, String], iconPrefix: String, showError: { type: Boolean, @@ -110,6 +112,7 @@ export default defineComponent({ return ( { expect(wrapper.style.borderRadius).toEqual('3px'); }); +test('should change loading icon size when using icon-size prop', () => { + const wrapper = mount(VanImage, { + props: { + iconSize: '3rem', + loadingIcon: 'success', + }, + }); + expect(wrapper.find('.van-image__loading-icon').style.fontSize).toEqual( + '3rem' + ); +}); + +test('should change error icon size when using icon-size prop', async () => { + const wrapper = mount(VanImage, { + props: { + src: IMAGE_URL, + iconSize: '3rem', + errorIcon: 'error', + }, + }); + await wrapper.find('img').trigger('error'); + expect(wrapper.find('.van-image__error-icon').style.fontSize).toEqual('3rem'); +}); + test('should render default slot correctly', () => { const wrapper = mount(VanImage, { props: {