getDOMNode() · Enzyme (original) (raw)
- Table of Contents
- Introduction
- Guides
- Installation
- API Reference
- Change Log
- Future
- Contributing Guide
- Published with GitBook
.getDOMNode() => DOMComponent
Returns the outer most DOMComponent of the current wrapper.
Notes:
- can only be called on a wrapper of a single node.
- will raise if called on a wrapper of a stateless functional component.
Returns
DOMComponent: The retrieved DOM component.
Examples
const wrapper = mount(<MyComponent />);
expect(wrapper.getDOMNode()).to.have.property('className');