I\'ve read the documentation about Jest. However this seems to imply unit testing of individual components.
How does one test integration of components, or acceptance t
you can now use protractor-react-selector to identify web elements by react's component, props, and state. This will automatically wait to load REACT in your app and then identify the web elements. It can save you from doing an extra ton of workarounds.
You can identify your target element by:
const myElement = element(
by.react('MyComponent', { someBooleanProp: true }, { someBooleanState: true })
);
Find out some sample tests here
Let me know if this helps!