From 60710607bca7bf4fccf55e89910169ce369ba273 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Mon, 13 May 2019 10:28:39 +0800 Subject: [PATCH] [bugfix] Tabbar: should not render info when info is empty string --- packages/info/index.tsx | 2 +- .../test/__snapshots__/index.spec.js.snap | 7 ++++ packages/info/test/index.spec.js | 32 +++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 packages/info/test/__snapshots__/index.spec.js.snap create mode 100644 packages/info/test/index.spec.js diff --git a/packages/info/index.tsx b/packages/info/index.tsx index a6c6b2373..9f9421bb9 100644 --- a/packages/info/index.tsx +++ b/packages/info/index.tsx @@ -17,7 +17,7 @@ function Info( slots: DefaultSlots, ctx: RenderContext ) { - if (!isDef(props.info)) { + if (!isDef(props.info) || props.info === '') { return; } diff --git a/packages/info/test/__snapshots__/index.spec.js.snap b/packages/info/test/__snapshots__/index.spec.js.snap new file mode 100644 index 000000000..84b187992 --- /dev/null +++ b/packages/info/test/__snapshots__/index.spec.js.snap @@ -0,0 +1,7 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`should not render when info is empty string 1`] = ``; + +exports[`should not render when info is empty undefined 1`] = ``; + +exports[`should render when info is zero 1`] = `
0
`; diff --git a/packages/info/test/index.spec.js b/packages/info/test/index.spec.js new file mode 100644 index 000000000..e7d35db2c --- /dev/null +++ b/packages/info/test/index.spec.js @@ -0,0 +1,32 @@ +import Info from '..'; +import { mount } from '../../../test/utils'; + +test('should not render when info is empty string', () => { + const wrapper = mount(Info, { + propsData: { + info: '' + } + }); + + expect(wrapper).toMatchSnapshot(); +}); + +test('should not render when info is empty undefined', () => { + const wrapper = mount(Info, { + propsData: { + info: undefined + } + }); + + expect(wrapper).toMatchSnapshot(); +}); + +test('should render when info is zero', () => { + const wrapper = mount(Info, { + propsData: { + info: 0 + } + }); + + expect(wrapper).toMatchSnapshot(); +});