mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
7322aa6f5f
This reverts commit 6759887c44
.
22 lines
472 B
TypeScript
22 lines
472 B
TypeScript
import * as React from 'react';
|
|
import { extendTest } from '../../../tests/shared/demoTest';
|
|
|
|
jest.mock('rc-drawer', () => {
|
|
const Drawer = jest.requireActual('rc-drawer');
|
|
const MockDrawer = Drawer.default;
|
|
return (props: any) => {
|
|
const newProps = {
|
|
...props,
|
|
open: true,
|
|
getContainer: false,
|
|
maskMotion: null,
|
|
motion: null,
|
|
};
|
|
return <MockDrawer {...newProps} />;
|
|
};
|
|
});
|
|
|
|
extendTest('drawer', {
|
|
testingLib: true,
|
|
});
|