mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
1bba2ef65e
* Delete netlify.toml
* 🆙 upgrade dev deps
* fix mockdate tsd
* fix tsc noEmit
26 lines
756 B
TypeScript
26 lines
756 B
TypeScript
import React from 'react';
|
|
import Moment from 'moment';
|
|
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(Moment('2000-09-28').valueOf());
|
|
}
|
|
const wrapper = mount(
|
|
<ConfigProvider direction="rtl">
|
|
<Component />
|
|
</ConfigProvider>,
|
|
);
|
|
expect(wrapper).toMatchRenderedSnapshot();
|
|
if (mockDate) {
|
|
MockDate.reset();
|
|
}
|
|
});
|
|
});
|
|
}
|