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
I get this error message from every test structured as above.
[WARNING]: Saga exceeded async timeout of 500ms
500 because I used expectSaga.DEFAULT_TIMEOUT = 500;
no matter what value I put in the default timeout I get that warning.
I know I can use silent but that seems wrong since I want the warning if it's real.
I have tried to use the done() method for the jest test but still get the warning...
I saw testSaga but that didn't seem to work the same, am I wrong if so how would I write the above as testSaga()?
Lastly I don't want to use .hasFinalState because I don't really want to have to add all of the values from multiple reducers for many reasons...
Please help.
The text was updated successfully, but these errors were encountered:
I have this test
I get this error message from every test structured as above.
[WARNING]: Saga exceeded async timeout of 500ms
500 because I used
expectSaga.DEFAULT_TIMEOUT = 500;
no matter what value I put in the default timeout I get that warning.
I know I can use silent but that seems wrong since I want the warning if it's real.
I have tried to use the done() method for the jest test but still get the warning...
I saw testSaga but that didn't seem to work the same, am I wrong if so how would I write the above as testSaga()?
Lastly I don't want to use .hasFinalState because I don't really want to have to add all of the values from multiple reducers for many reasons...
Please help.
The text was updated successfully, but these errors were encountered: