diff --git a/src/action-bar-button/test/__snapshots__/index.spec.js.snap b/src/action-bar-button/test/__snapshots__/index.spec.js.snap index 81f731eb4..dc7f24e7a 100644 --- a/src/action-bar-button/test/__snapshots__/index.spec.js.snap +++ b/src/action-bar-button/test/__snapshots__/index.spec.js.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`should render default slot and match snapshot 1`] = ` +exports[`should render default slot correctly 1`] = ` `; diff --git a/src/action-sheet/test/index.spec.js b/src/action-sheet/test/index.spec.js index 7bb3f4946..917ad0f55 100644 --- a/src/action-sheet/test/index.spec.js +++ b/src/action-sheet/test/index.spec.js @@ -64,7 +64,7 @@ test('should emit cancel event after clicking cancel button', () => { expect(wrapper.emitted('cancel').length).toEqual(1); }); -test('should render subname and match snapshot', () => { +test('should render subname correctly', () => { const wrapper = mount(ActionSheet, { props: { show: true, @@ -84,7 +84,7 @@ test('should render content after disabling the lazy-render prop', async () => { expect(wrapper.find('.van-action-sheet__content').exists()).toBeTruthy(); }); -test('should render default slot and match snapshot', () => { +test('should render default slot correctly', () => { const wrapper = mount(ActionSheet, { props: { show: true, @@ -160,7 +160,7 @@ test('should allow to custom close icon with closeIcon prop', () => { expect(wrapper.find('.van-action-sheet__close').html()).toMatchSnapshot(); }); -test('should render description and match snapshot', () => { +test('should render description correctly', () => { const wrapper = mount(ActionSheet, { props: { show: true, diff --git a/src/badge/test/__snapshots__/index.spec.js.snap b/src/badge/test/__snapshots__/index.spec.js.snap index e34132b4b..15d29acc9 100644 --- a/src/badge/test/__snapshots__/index.spec.js.snap +++ b/src/badge/test/__snapshots__/index.spec.js.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`should render content slot and match snapshot 1`] = `
Custom Content
`; +exports[`should render content slot correctly 1`] = `
Custom Content
`; exports[`should render nothing when badge is empty string 1`] = ``; diff --git a/src/badge/test/index.spec.js b/src/badge/test/index.spec.js index 61f286b60..1c68fbf03 100644 --- a/src/badge/test/index.spec.js +++ b/src/badge/test/index.spec.js @@ -31,7 +31,7 @@ test('should render nothing when badge is zero', () => { expect(wrapper.html()).toMatchSnapshot(); }); -test('should render content slot and match snapshot', () => { +test('should render content slot correctly', () => { const wrapper = mount(Badge, { slots: { content: () => 'Custom Content', diff --git a/src/button/test/__snapshots__/index.spec.js.snap b/src/button/test/__snapshots__/index.spec.js.snap index 69f026d5e..f22181a7c 100644 --- a/src/button/test/__snapshots__/index.spec.js.snap +++ b/src/button/test/__snapshots__/index.spec.js.snap @@ -23,7 +23,7 @@ exports[`should render icon in the right side when setting icon-position to righ `; -exports[`should render loading slot and match snapshot 1`] = ` +exports[`should render loading slot correctly 1`] = `