Is there a way to get the actual DOM node so I can the query it with the Dom api as opposed to being required to use enzyme\'s api, it\'s just for edge cases where for examp
If you want to print out whole DOM,
const wrapper = shallow(); console.log("DOM tree for humans", wrapper.text());