From 669d2e77ae7018b897b95d182b77cd5a15adfd1e Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 28 Nov 2020 19:20:11 +0800 Subject: [PATCH] test(Pagination): update test cases --- ...ndex.legacy.js.snap => index.spec.js.snap} | 60 ++++++++++++++----- .../test/{index.legacy.js => index.spec.js} | 6 +- 2 files changed, 47 insertions(+), 19 deletions(-) rename src/pagination/test/__snapshots__/{index.legacy.js.snap => index.spec.js.snap} (68%) rename src/pagination/test/{index.legacy.js => index.spec.js} (76%) diff --git a/src/pagination/test/__snapshots__/index.legacy.js.snap b/src/pagination/test/__snapshots__/index.spec.js.snap similarity index 68% rename from src/pagination/test/__snapshots__/index.legacy.js.snap rename to src/pagination/test/__snapshots__/index.spec.js.snap index 440c7e3d6..35bfbb398 100644 --- a/src/pagination/test/__snapshots__/index.legacy.js.snap +++ b/src/pagination/test/__snapshots__/index.spec.js.snap @@ -1,25 +1,53 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`render page slot 1`] = ` +exports[`should render page slot correctly 1`] = ` `; -exports[`render prev-text & next-text slot 1`] = ` +exports[`should render prev-text、next-text slot correctly 1`] = ` `; diff --git a/src/pagination/test/index.legacy.js b/src/pagination/test/index.spec.js similarity index 76% rename from src/pagination/test/index.legacy.js rename to src/pagination/test/index.spec.js index ad691e9f0..dcace6046 100644 --- a/src/pagination/test/index.legacy.js +++ b/src/pagination/test/index.spec.js @@ -1,7 +1,7 @@ import { mount } from '@vue/test-utils'; import Paginaion from '..'; -test('render prev-text & next-text slot', () => { +test('should render prev-text、next-text slot correctly', () => { const wrapper = mount(Paginaion, { props: { totalItems: 50, @@ -16,14 +16,14 @@ test('render prev-text & next-text slot', () => { expect(wrapper.html()).toMatchSnapshot(); }); -test('render page slot', () => { +test('should render page slot correctly', () => { const wrapper = mount(Paginaion, { props: { totalItems: 50, showPageSize: 5, }, slots: { - page: ({ text }) => `${text}`, + page: ({ text }) => `foo ${text}`, }, });