# `.isEmpty() => Boolean`
Returns whether ornot the current node is empty.
#### Returns
`Boolean`: whether ornot the current node is empty.
#### Example
```jsx
const wrapper = mount(<div className="some-class" />);
expect(wrapper.find('.other-class').isEmpty()).to.be(true);
```