()
| 14 | } from "./workspaces"; |
| 15 | |
| 16 | const createTestQueryClient = (): QueryClient => |
| 17 | new QueryClient({ |
| 18 | defaultOptions: { |
| 19 | queries: { |
| 20 | retry: false, |
| 21 | gcTime: Number.POSITIVE_INFINITY, |
| 22 | refetchOnWindowFocus: false, |
| 23 | networkMode: "offlineFirst", |
| 24 | }, |
| 25 | }, |
| 26 | }); |
| 27 | |
| 28 | const workspacesResponse = { |
| 29 | workspaces: [], |