ant-design/tests/shared/mountTest.js
2019-11-05 01:59:14 +08:00

17 lines
485 B
JavaScript

import React from 'react';
import { mount } from 'enzyme';
// eslint-disable-next-line jest/no-export
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();
});
});
}