Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Latest commit

 

History

History
18 lines (12 loc) · 330 Bytes

File metadata and controls

18 lines (12 loc) · 330 Bytes

.isEmptyRender() => Boolean

Returns whether or not the current component returns one of the allowed falsy values: false or null.

Returns

Boolean: whether the return is falsy

Example

function Foo() {
  return null;
}

const wrapper = mount(<Foo />);
expect(wrapper.isEmptyRender()).to.be(true);