mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 21:48:19 +08:00
12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('modal', {
|
||
|
testRootProps: false,
|
||
|
});
|
||
|
|
||
|
rootPropsTest('modal', (Modal, props) => <Modal {...props} />, {
|
||
|
findRootElements: () => document.querySelectorAll('.ant-modal-root'),
|
||
|
expectCount: 1,
|
||
|
});
|