mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
23 lines
717 B
TypeScript
23 lines
717 B
TypeScript
import React from 'react';
|
|
import DatePicker from '..';
|
|
import { render } from '../../../tests/utils';
|
|
import { resetWarned } from '../../_util/warning';
|
|
|
|
const { QuarterPicker } = DatePicker;
|
|
|
|
describe('QuarterPicker', () => {
|
|
it('should support style prop', () => {
|
|
resetWarned();
|
|
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
const { container } = render(<QuarterPicker style={{ width: 400 }} />);
|
|
expect(container.firstChild).toMatchSnapshot();
|
|
|
|
expect(warnSpy).toHaveBeenCalledWith(
|
|
"Warning: [antd: QuarterPicker] DatePicker.QuarterPicker is legacy usage. Please use DatePicker[picker='quarter'] directly.",
|
|
);
|
|
|
|
warnSpy.mockRestore();
|
|
});
|
|
});
|