Dylan
Results
2
issues of
Dylan
I've struggled with testing child element text all afternoon. ``` it('tests child element for its text', () => { const component = shallow().dive(); expect(component.find('span').text()).toContain('some text'); }); ``` However, the above...
Need More Information
Hello, I've the following code: ` this.onDrag(newPos)} onDragEnd={() => this.onDragEnd()} > ` Everything loads fine, but the events are not triggering when I click to drag. Am I missing something?