ant-design/tests/shared/mountTest.tsx
Eric Wang 7bc3d4f222
chore: Refactor the button test to use typescript (#22953)
* Refactor the button test to use typescript

* update tsconfig.json

* Change file name as a workaround

* update antd-tools
2020-04-13 13:36:23 +08:00

17 lines
506 B
TypeScript

import React from 'react';
import { mount } from 'enzyme';
// 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 />);
expect(() => {
wrapper.setProps({});
wrapper.unmount();
}).not.toThrow();
});
});
}