import React from 'react'; import { render, mount } from 'enzyme'; import Pagination from '..'; import ConfigProvider from '../../config-provider'; import mountTest from '../../../tests/shared/mountTest'; import rtlTest from '../../../tests/shared/rtlTest'; describe('Pagination', () => { mountTest(Pagination); rtlTest(Pagination); it('should be rendered correctly in RTL', () => { const wrapper = mount( , ); expect(render(wrapper)).toMatchSnapshot(); }); });