diff --git a/tests/shared/mountTest.tsx b/tests/shared/mountTest.tsx index 7e4dee4a9f..a6ed7fb68d 100644 --- a/tests/shared/mountTest.tsx +++ b/tests/shared/mountTest.tsx @@ -1,15 +1,15 @@ import React from 'react'; -import { mount } from 'enzyme'; +import { render } from '../utils'; // 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(); + const { unmount, rerender } = render(); expect(() => { - wrapper.setProps({}); - wrapper.unmount(); + rerender(); + unmount(); }).not.toThrow(); }); });