Hi, I tried to test on a component with multiple children wrapped in <Suspense />, like:
<Suspense fallback={...}>
<div />
<div />
<div />
</Suspense>
Only the first div rendered in test framework.
Here's the reproduction link. It looks good on browser and React Testing Framework but failed on Enzyme. Is it a bug of React 17 adapter?