本文介绍了Jest Enzyme 测试在 render 方法中返回 null 的 React 组件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个组件在某些条件下在渲染中返回 null:
I have a component that returns null in render under certain conditions:
render() {
if (this.props.isHidden) {
return null;
}
return <div>test</div>;
}
我想用 jest 和酶检查当 isHidden 为真时组件是否为空:
I want to check if the component is null when isHidden is true with jest and enzyme:
describe('myComp', () => {
it('should not render if isHidden is true', () => {
const comp = shallow(<myComp isHidden={true} />);
expect(comp.children().length).toBe(0);
});
});
这行得通,但有没有更惯用的方式来编写这个测试?测试呈现为 null 的组件是很常见的情况.
This works but is there a more idiomatic way to write this test ? Testing for components that render as null is quite a common scenario.
推荐答案
expect(comp.type()).toEqual(null)
就是这样!
或:expect(comp.get(0)).toBeFalsy()
这篇关于Jest Enzyme 测试在 render 方法中返回 null 的 React 组件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!