How can I make my token refresh function more testable?
I have a function in my React app’s App component that refreshes the user’s access token when it’s first rendered (useEffect hook). At the moment, unit tests are checking to see how the state has changed at the end of the component’s rendering. How can I make the function itself more testable?