Enzyme - How to access and set value? I'm confused about how to access value when using mount. Here's what I've got as my test: it('cancels changes when user presses esc', done => { const wrapper = mount(); const input = wrapper.find('input'); console.log(input.render().attr('value')); input.simulate('focus'); done(); }); The console prints out undefined. But if I slightly modify the code, it wo..