Skip to content
This repository was archived by the owner on Jul 26, 2024. It is now read-only.

Latest commit

 

History

History
18 lines (12 loc) · 333 Bytes

File metadata and controls

18 lines (12 loc) · 333 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.equal(true);