mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
22 lines
666 B
JavaScript
22 lines
666 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import moment from 'moment';
|
|
import DatePicker from '..';
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
import { openPanel } from './utils';
|
|
|
|
const { MonthPicker } = DatePicker;
|
|
|
|
describe('MonthPicker', () => {
|
|
focusTest(MonthPicker);
|
|
|
|
it('reset select item when popup close', () => {
|
|
const wrapper = mount(
|
|
<MonthPicker value={moment('2018-07-01')} />
|
|
);
|
|
openPanel(wrapper);
|
|
wrapper.find('.ant-calendar-month-panel-month').first().simulate('click');
|
|
wrapper.find('.ant-calendar-month-panel-cell').at(6).hasClass('ant-calendar-month-panel-selected-cell');
|
|
});
|
|
});
|