update test

This commit is contained in:
iamkun 2022-03-30 14:38:11 +08:00
parent f8c93dd4e1
commit 15f5453315

View File

@ -5,6 +5,7 @@ import customParseFormat from 'dayjs/plugin/customParseFormat';
import MockDate from 'mockdate';
import DatePicker from '..';
import focusTest from '../../../tests/shared/focusTest';
import 'dayjs/locale/mk'; // to test local in 'prop locale should works' test case
dayjs.extend(customParseFormat);
@ -213,9 +214,7 @@ describe('DatePicker', () => {
},
});
const wrapper = mount(
<DatePicker.RangePicker defaultValue={moment()} placement="bottomLeft" />,
);
const wrapper = mount(<DatePicker.RangePicker defaultValue={dayjs()} placement="bottomLeft" />);
expect(wrapper.find('Trigger').prop('popupAlign')).toEqual(popupAlignDefault(['tl', 'bl']));
wrapper.setProps({
placement: 'bottomRight',