reactjs – 使用Jest测试React componentWillUnmount

我正在使用React的TestUtil.renderIntoDocument来测试React组件类 like this(只有我使用的是TypeScript而不是Babel):
describe("MyComponent",() => {
  it("will test something after being mounted",() => {
    var component = TestUtils.renderIntoDocument(<MyComponent />);
    // some test...
  })
})

这有效,但我想编写一个测试来验证componentWillUnmount的行为是否符合预期.但是,似乎测试运行器从未卸载组件,这并不奇怪.所以我的问题是:如何在测试中卸载组件? TestUtil没有任何看起来像我想要的东西,就像我想象的removeFromDocument一样.

这是正确的,但TestUtils.renderIntoDocument返回一个ReactComponent,可以访问组件的生命周期方法.

所以你可以手动调用component.componentWillUnmount().

相关文章

导入moment 使用方式 年月日,时分秒 星期几 相对时间 7天后 2小时后 明天 将毫秒转换成年月日
@ 一、前言 为什么介绍redux-actions呢? 第一次见到主要是接手公司原有的项目,发现有之前的大佬在处理...
十大React Hook库 原文地址:https://dev.to/bornfightcompany/top-10-react-hook-libraries-4065 原文...
React生命周期 React的生命周期从广义上分为挂载、渲染、卸载三个阶段,在React的整个生命周期中提供很...
React虚拟DOM的理解 Virtual DOM是一棵以JavaScript对象作为基础的树,每一个节点可以将其称为VNode,用...
React中JSX的理解 JSX是快速生成react元素的一种语法,实际是React.createElement(component, props, ....