(queryKey: readonly unknown[])
| 605 | */ |
| 606 | export const _retryTestHelpers = { |
| 607 | getRetryCount(queryKey: readonly unknown[]): number { |
| 608 | return retryCounts.get(serializeQueryKey(queryKey)) ?? 0 |
| 609 | }, |
| 610 | setRetryCount(queryKey: readonly unknown[], count: number): void { |
| 611 | retryCounts.set(serializeQueryKey(queryKey), count) |
| 612 | }, |
nothing calls this directly
no test coverage detected