Skip to content

Commit

Permalink
Fix test imports
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-sachs committed Nov 15, 2024
1 parent 4a77a5e commit 3d5adc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/connect-query-core/src/query-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@

import type { MessageShape } from "@bufbuild/protobuf";
import type { Query } from "@tanstack/query-core";
import { mockEliza, mockPaginatedTransport } from "test-utils";
import type { SayResponseSchema } from "test-utils/gen/eliza_pb.js";
import { ElizaService } from "test-utils/gen/eliza_pb.js";
import { ListService } from "test-utils/gen/list_pb.js";
import { describe, expect, it } from "vitest";

import { createConnectQueryKey } from "./connect-query-key.js";
import type { SayResponseSchema } from "./gen/eliza_pb.js";
import { ElizaService } from "./gen/eliza_pb.js";
import { ListService } from "./gen/list_pb.js";
import { QueryClient } from "./query-client.js";
import { mockEliza, mockPaginatedTransport } from "./test/test-utils.js";

// TODO: maybe create a helper to take a service and method and generate this.
const sayMethodDescriptor = ElizaService.method.say;
Expand Down

0 comments on commit 3d5adc5

Please sign in to comment.