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
currently, when you invoke the provideApolloClient method with a valid client you are pretty much stuck with it. If you are using something like cy.intercept then the cache of the apollo client gets hit if you make subsequent requests in different tests resulting in cy.wait not working if you wait for a certain operation.
since provideApolloClient actually returns a function that should release the default client I tried that but with no result. The cache was still there.
It would be great if there would be something like a dispose function to get rid of the client and be able to provide a different client or the same client again.
The text was updated successfully, but these errors were encountered:
currently, when you invoke the
provideApolloClient
method with a valid client you are pretty much stuck with it. If you are using something likecy.intercept
then the cache of the apollo client gets hit if you make subsequent requests in different tests resulting incy.wait
not working if you wait for a certain operation.since
provideApolloClient
actually returns a function that should release the default client I tried that but with no result. The cache was still there.It would be great if there would be something like a dispose function to get rid of the client and be able to provide a different client or the same client again.
The text was updated successfully, but these errors were encountered: