Returns whether or not the wrapper would ultimately render only the allowed falsy values: false or null.
Boolean: whether the return is falsy
function Foo() {
return null;
}
const wrapper = mount(<Foo />);
expect(wrapper.isEmptyRender()).to.equal(true);