()
| 76 | ]; |
| 77 | const Wrapper = ({children}) => children; |
| 78 | const Leaf = () => <div>Leaf</div>; |
| 79 | const Intermediate = ({children}) => [ |
| 80 | <Leaf key="leaf" />, |
| 81 | <Wrapper key="wrapper">{children}</Wrapper>, |
| 82 | ]; |
| 83 | |
| 84 | act(() => render(<Root />)); |
| 85 | expect(store).toMatchInlineSnapshot(` |