Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 551 Bytes

getElement.md

File metadata and controls

36 lines (21 loc) · 551 Bytes

.getElement() => ReactElement

Returns the wrapped ReactElement.

If the current wrapper is wrapping the root component, returns the root component's latest render output.

Returns

ReactElement: The retrieved ReactElement.

Examples

const element = (
  <div>
    <span />
    <span />
  </div>
);

function MyComponent() {
  return element;
}

const wrapper = shallow(<MyComponent />);
expect(wrapper.getElement()).to.equal(element);

Related Methods