You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
506 B
17 lines
506 B
5 years ago
|
import React from 'react';
|
||
|
import { mount } from 'enzyme';
|
||
|
|
||
5 years ago
|
// eslint-disable-next-line jest/no-export
|
||
5 years ago
|
export default function mountTest(Component: React.ComponentType) {
|
||
5 years ago
|
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();
|
||
|
});
|
||
|
});
|
||
|
}
|