import React from 'react'; import dayjs from 'dayjs'; import MockDate from 'mockdate'; import { mount } from 'enzyme'; import ConfigProvider from '../../components/config-provider'; // eslint-disable-next-line jest/no-export export default function rtlTest(Component: React.ComponentType, mockDate?: boolean) { describe(`rtl render`, () => { it(`component should be rendered correctly in RTL direction`, () => { if (mockDate) { MockDate.set(dayjs('2000-09-28').valueOf()); } const wrapper = mount( , ); expect(wrapper.render()).toMatchSnapshot(); if (mockDate) { MockDate.reset(); } }); }); }