mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-12 12:23:08 +08:00
test: Rewrite mountTest with testing lib (#35326)
This commit is contained in:
parent
4b71e1a694
commit
19d5f07c16
@ -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(<Component />);
|
||||
const { unmount, rerender } = render(<Component />);
|
||||
expect(() => {
|
||||
wrapper.setProps({});
|
||||
wrapper.unmount();
|
||||
rerender(<Component />);
|
||||
unmount();
|
||||
}).not.toThrow();
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user