mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
7bc3d4f222
* Refactor the button test to use typescript * update tsconfig.json * Change file name as a workaround * update antd-tools
17 lines
506 B
TypeScript
17 lines
506 B
TypeScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
|
|
// eslint-disable-next-line jest/no-export
|
|
export default function mountTest(Component: React.ComponentType) {
|
|
describe(`mount and unmount`, () => {
|
|
// https://github.com/ant-design/ant-design/pull/18441
|
|
it(`component could be updated and unmounted without errors`, () => {
|
|
const wrapper = mount(<Component />);
|
|
expect(() => {
|
|
wrapper.setProps({});
|
|
wrapper.unmount();
|
|
}).not.toThrow();
|
|
});
|
|
});
|
|
}
|