mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
26 lines
723 B
JavaScript
26 lines
723 B
JavaScript
|
import React from 'react';
|
||
|
import Moment from 'moment';
|
||
|
import MockDate from 'mockdate';
|
||
|
import { render, mount } from 'enzyme';
|
||
|
import ConfigProvider from '../../components/config-provider';
|
||
|
|
||
|
// eslint-disable-next-line jest/no-export
|
||
|
export default function rtlTest(Component, mockDate) {
|
||
|
describe(`rtl render`, () => {
|
||
|
it(`component should be rendered correctly in RTL direction`, () => {
|
||
|
if (mockDate) {
|
||
|
MockDate.set(Moment('2000-09-28'));
|
||
|
}
|
||
|
const wrapper = mount(
|
||
|
<ConfigProvider direction="rtl">
|
||
|
<Component />
|
||
|
</ConfigProvider>,
|
||
|
);
|
||
|
expect(render(wrapper)).toMatchSnapshot();
|
||
|
if (mockDate) {
|
||
|
MockDate.reset();
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
}
|