I\'m testing a React component with Jasmine Enzyme shallow rendering.
Simplified here for the purposes of this question...
function MyOuterComponent() {
If you are to test certain things on each one also consider iterating through the matched set:
component.find('MyInnerComponent').forEach( (node) => { expect(node.prop('title')).toEqual('Good-bye') })