mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
11 lines
417 B
TypeScript
11 lines
417 B
TypeScript
|
import dayjs from 'dayjs';
|
||
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('date-picker', { skip: ['locale.tsx'], testRootProps: false });
|
||
|
|
||
|
rootPropsTest('time-picker', (DatePicker, props) => <DatePicker {...props} value={dayjs()} />, {
|
||
|
findRootElements: () => document.querySelectorAll('.ant-picker, .ant-picker-dropdown'),
|
||
|
expectCount: 2,
|
||
|
});
|