我正在使用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一样.