Can I test two diff GET queries in same React custom hook w/ React Testing Lib & React-Hooks?
I'm using a custom react hook to perform two GET operations using react query. The API is in a separate module and uses both getTestByUid() and getTestStatuses() inside useQuery. // TestHook.js import { useQuery } from "react-query" export const useTest…