mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
17 lines
519 B
TypeScript
17 lines
519 B
TypeScript
import React from 'react';
|
|
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 { unmount, rerender } = render(<Component />);
|
|
expect(() => {
|
|
rerender(<Component />);
|
|
unmount();
|
|
}).not.toThrow();
|
|
});
|
|
});
|
|
}
|