[]) {
@@ -141,3 +142,27 @@ test('should render correct count when using string prop', () => {
expect(icons).toHaveLength(4);
});
+
+test('should reset value to 0 when using clearable prop', () => {
+ const wrapper = mount(Rate, {
+ props: {
+ modelValue: 4,
+ clearable: true,
+ },
+ });
+ const icons = wrapper.findAll('.van-rate__item');
+ const item4 = wrapper.findAll('.van-rate__icon')[3];
+ mockGetBoundingClientRect(icons);
+
+ trigger(wrapper, 'touchstart', 80, 0);
+ trigger(wrapper, 'touchmove', 80 + TAP_OFFSET, 0);
+ item4.trigger('click');
+ expect(wrapper.emitted('change')![0]).toEqual([0]);
+ expect(wrapper.emitted('update:modelValue')![0]).toEqual([0]);
+
+ trigger(wrapper, 'touchstart', 80, 0);
+ trigger(wrapper, 'touchmove', 80 + TAP_OFFSET + 1, 0);
+ item4.trigger('click');
+ expect(wrapper.emitted('change')).toHaveLength(1);
+ expect(wrapper.emitted('update:modelValue')).toHaveLength(1);
+});
diff --git a/packages/vant/src/utils/constant.ts b/packages/vant/src/utils/constant.ts
index f111723e3..1e768abff 100644
--- a/packages/vant/src/utils/constant.ts
+++ b/packages/vant/src/utils/constant.ts
@@ -17,3 +17,4 @@ export const FORM_KEY: InjectionKey = Symbol('van-form');
// Same as the default value of iOS long press time
// https://developer.apple.com/documentation/uikit/uilongpressgesturerecognizer/1616423-minimumpressduration
export const LONG_PRESS_START_TIME = 500;
+export const TAP_OFFSET = 5;