mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
23 lines
665 B
JavaScript
23 lines
665 B
JavaScript
|
import React from 'react';
|
||
|
import { mount } from 'enzyme';
|
||
|
import DatePicker from '..';
|
||
|
import { resetWarned } from '../../_util/devWarning';
|
||
|
|
||
|
const { QuarterPicker } = DatePicker;
|
||
|
|
||
|
describe('QuarterPicker', () => {
|
||
|
it('should support style prop', () => {
|
||
|
resetWarned();
|
||
|
const warnSpy = jest.spyOn(console, 'error');
|
||
|
|
||
|
const wrapper = mount(<QuarterPicker style={{ width: 400 }} />);
|
||
|
expect(wrapper.render()).toMatchSnapshot();
|
||
|
|
||
|
expect(warnSpy).toHaveBeenCalledWith(
|
||
|
"Warning: [antd: QuarterPicker] DatePicker.QuarterPicker is legacy usage. Please use DatePicker[picker='quarter'] directly.",
|
||
|
);
|
||
|
|
||
|
warnSpy.mockRestore();
|
||
|
});
|
||
|
});
|