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}`,
},
});