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.
|
|
|
/* eslint-disable import/prefer-default-export */
|
|
|
|
export function selectDate(wrapper, date, index) {
|
|
|
|
let calendar = wrapper;
|
|
|
|
if (index !== undefined) {
|
|
|
|
calendar = wrapper.find('.ant-calendar-range-part').at(index);
|
|
|
|
}
|
|
|
|
calendar.find({ title: date.format('LL'), role: 'gridcell' }).simulate('click');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hasSelected(wrapper, date) {
|
|
|
|
return wrapper
|
|
|
|
.find({ title: date.format('LL'), role: 'gridcell' })
|
|
|
|
.hasClass('ant-calendar-selected-day');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function openPanel(wrapper) {
|
|
|
|
wrapper.find('.ant-calendar-picker-input').simulate('click');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function clearInput(wrapper) {
|
|
|
|
wrapper
|
|
|
|
.find('.ant-calendar-picker-clear')
|
|
|
|
.hostNodes()
|
|
|
|
.simulate('click');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function nextYear(wrapper) {
|
|
|
|
wrapper.find('.ant-calendar-next-year-btn').simulate('click');
|
|
|
|
}
|
|
|
|
|
|
|
|
export function nextMonth(wrapper) {
|
|
|
|
wrapper.find('.ant-calendar-next-month-btn').simulate('click');
|
|
|
|
}
|