From e026a5614d275b53f53ca6bb3137dffc6dc6d8e3 Mon Sep 17 00:00:00 2001 From: Lindy <33708359+Lindysen@users.noreply.github.com> Date: Fri, 18 Sep 2020 11:29:34 +0800 Subject: [PATCH] fix(CouponCell): discounted value (#7196) * fix(CouponCell): discounted value * feat(CouponCell): add unit test * feat(CouponCell): add unit test --- src/coupon-cell/index.tsx | 4 +--- .../test/__snapshots__/index.spec.js.snap | 9 +++++++++ src/coupon-list/test/index.spec.js | 16 ++++++++++++++++ 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/src/coupon-cell/index.tsx b/src/coupon-cell/index.tsx index 86e3b3d59..368758649 100644 --- a/src/coupon-cell/index.tsx +++ b/src/coupon-cell/index.tsx @@ -30,9 +30,7 @@ function formatValue(props: CouponCellProps) { if (isDef(coupon.value)) { ({ value } = coupon); - } - - if (isDef(coupon.denominations)) { + } else if (isDef(coupon.denominations)) { value = coupon.denominations; } diff --git a/src/coupon-list/test/__snapshots__/index.spec.js.snap b/src/coupon-list/test/__snapshots__/index.spec.js.snap index 1c6330ea1..614ef278f 100644 --- a/src/coupon-list/test/__snapshots__/index.spec.js.snap +++ b/src/coupon-list/test/__snapshots__/index.spec.js.snap @@ -54,6 +54,15 @@ exports[`render coupon cell with coupon 1`] = ` `; + +exports[`render coupon cell with zero discount 1`] = ` +
+
优惠券
+
-¥ 0.00
+ +
+`; + exports[`render coupon list 1`] = `
diff --git a/src/coupon-list/test/index.spec.js b/src/coupon-list/test/index.spec.js index 1fa8732e6..a0e2053d4 100644 --- a/src/coupon-list/test/index.spec.js +++ b/src/coupon-list/test/index.spec.js @@ -26,6 +26,12 @@ const coupon3 = { denominations: 123, }; +const coupon4 = { + ...coupon, + startAt: 1600327871, + endAt: 1700327871, +}; + const emptyCoupon = { id: 0, discount: 0, @@ -162,3 +168,13 @@ test('render coupon cell with coupon', () => { }); expect(wrapper).toMatchSnapshot(); }); + +test('render coupon cell with zero discount', () => { + const wrapper = mount(CouponCell, { + propsData: { + coupons: [{ ...coupon4, value: 0, denominations: 150 }], + chosenCoupon: 0, + }, + }); + expect(wrapper).toMatchSnapshot(); +});