({ children }: { children: React.ReactNode })
| 42 | defaultOptions: { queries: { retry: false, gcTime: 0 } }, |
| 43 | }); |
| 44 | const customWrapper = ({ children }: { children: React.ReactNode }) => |
| 45 | React.createElement(QueryClientProvider, { client: queryClient }, children); |
| 46 | |
| 47 | const initialProps: { options: Record<string, unknown> } = { |
| 48 | options: { headers: { Authorization: 'Bearer token1' } }, |
nothing calls this directly
no outgoing calls
no test coverage detected