gpt4 book ai didi

javascript - 在 jsdom 测试中卸载/销毁组件

转载 作者:行者123 更新时间:2023-12-03 13:07:04 25 4
gpt4 key购买 nike

有没有办法卸载和垃圾收集使用 TestUtils.renderIntoDocument 安装的 React 组件在 jsdom 测试中?

我正在尝试测试 componentWillUnmount 上发生的事情和TestUtils.renderIntoDocument不返回任何 DOM 节点来调用 React. unmountComponentAtNode上。

最佳答案

不,但您可以简单地手动使用 ReactDOM.render:

var container = document.createElement('div');
ReactDOM.render(<Component />, container);
// ...
ReactDOM.unmountComponentAtNode(container);

这正是what ReactTestUtils does anyway ,因此如果您需要对容器的引用,没有理由不这样做。

关于javascript - 在 jsdom 测试中卸载/销毁组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23973942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com