renderIntoDocument在测试后清理

时间:2016-07-20 14:45:23

标签: javascript reactjs

我正在查看React Test Utilities docs,特别是renderIntoDocument函数:

  

将组件渲染到文档中的分离DOM节点。

我想知道在完成测试后我是否应该对我已经渲染的组件做任何事情?

这有效:

const component = ReactTestUtils.renderIntoDocument(createElement(MyThing));

// do tests

unmountComponentAtNode(findDOMNode(component).parentElement);

但我想知道这一步是否有必要,因为文档中没有提到。我当前的方法是否真正实现了有用的功能,或者我可以使用renderIntoDocument而不必担心整理?

0 个答案:

没有答案