I'm using effector and React Testing Library (RTL). In the doc of RTL there is article about customerRender where we pass AllTheProviders as a wrapper of the render function.
Question: how to do the same with effector (couldn't find Provider there)? And how to mock store(s) since there could be more than one (value for Provider)?
In the end I wanted just to use render(<Component />) without passing any extra data, as doc shows.
It seems like you have to hydrate a scope that should provide your mocked values and pass it into effector provider. It should work well if you'll try something like following: