mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
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,
|
|
});
|