You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
import React from 'react';
|
|
import { mount, render } from 'enzyme';
|
|
import moment from 'moment';
|
|
import { RangePicker } from '../';
|
|
|
|
describe('RangePicker', () => {
|
|
it('show month panel according to value', () => {
|
|
const birthday = moment('2000-01-01', 'YYYY-MM-DD').locale('zh-cn');
|
|
const wrapper = mount(
|
|
<RangePicker
|
|
getCalendarContainer={trigger => trigger}
|
|
format="YYYY/MM/DD"
|
|
showTime open
|
|
/>
|
|
);
|
|
|
|
wrapper.setProps({ value: [birthday, birthday] });
|
|
expect(render(wrapper.find('Trigger').node.getComponent()))
|
|
.toMatchSnapshot();
|
|
});
|
|
|
|
it('switch to corresponding month panel when click presetted ranges', () => {
|
|
const birthday = moment('2000-01-01', 'YYYY-MM-DD').locale('zh-cn');
|
|
const wrapper = mount(
|
|
<RangePicker
|
|
ranges={{
|
|
'My Birthday': [birthday, birthday],
|
|
}}
|
|
getCalendarContainer={trigger => trigger}
|
|
format="YYYY/MM/DD"
|
|
showTime open
|
|
/>
|
|
);
|
|
|
|
const rangeCalendarWrapper = mount(wrapper.find('Trigger').node.getComponent());
|
|
rangeCalendarWrapper.find('.ant-calendar-range-quick-selector a')
|
|
.simulate('click');
|
|
expect(render(wrapper.find('Trigger').node.getComponent()))
|
|
.toMatchSnapshot();
|
|
});
|
|
});
|
|
|