()
| 6714 | const consoleErrorMock = vi.spyOn(console, 'error') |
| 6715 | const key = queryKey() |
| 6716 | function Example() { |
| 6717 | useQuery({ queryKey: key }) |
| 6718 | return <></> |
| 6719 | } |
| 6720 | renderWithClient(queryClient, <Example />) |
| 6721 | |
| 6722 | expect(consoleErrorMock).toHaveBeenCalledTimes(1) |
nothing calls this directly
no test coverage detected