Back to Enzyme

`.getElement() => ReactElement`

docs/api/ReactWrapper/getElement.md

2.9.1548 B
Original Source

.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

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

function MyComponent() {
  return element;
}

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

Related Methods