You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the application we adopted Sagas to manage our side effects. We've tried to use this excellent library to improve our test readability of our tests and that the ordering of the yields are correct.
Our application provides our apis through the application using the Context API. This is where we've hit a slight speed bump in the test with getContext.
In our Sagas we're accessing the api through getContext from the redux-saga/effects package. e.g.
Context
In the application we adopted Sagas to manage our side effects. We've tried to use this excellent library to improve our test readability of our tests and that the ordering of the yields are correct.
Our application provides our apis through the application using the Context API. This is where we've hit a slight speed bump in the test with
getContext
.In our Sagas we're accessing the api through
getContext
from theredux-saga/effects
package. e.g.In our tests we're trying to mock this dependency
Our generator function fails to execute the mock function provided through the
getContext
.getContext
in the correct way?getContext
when usingtestSaga
? (current this mocking works inexpectSaga
)The text was updated successfully, but these errors were encountered: