I am testing component with redux state. I have next structure
<TaskManagerProvider>
<TaskListManagerProvider>
<TaskListViewContainer></TaskListViewContainer>
</TaskListManagerProvider>
</TaskManagerProvider>
Providers are just React.Context
elements that provide some ts
classes. Inside TaskListViewContainer
I use custom hook that triggers task fetch and supplies them back with same hook to TaskListViewContainer
. I have three rerenders happening, for first two tasks are still empty but for third I actually have 5 mocked tasks and from debugger I can see that my table is populated with them. But render function for some reason returns result that has no tasks printed. Thanks!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…