reactjs – 使用Jest测试React componentWillUnmount

前端之家收集整理的这篇文章主要介绍了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().

猜你在找的React相关文章