mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
16 lines
442 B
JavaScript
16 lines
442 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
|
|
export default function mountTest(Component) {
|
|
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();
|
|
});
|
|
});
|
|
}
|