diff --git a/src/agents/minimax-vlm.normalizes-api-key.test.ts b/src/agents/minimax-vlm.normalizes-api-key.test.ts index 2838235bac0..98a3606d447 100644 --- a/src/agents/minimax-vlm.normalizes-api-key.test.ts +++ b/src/agents/minimax-vlm.normalizes-api-key.test.ts @@ -1,12 +1,6 @@ -import { afterEach, beforeAll, describe, expect, it, vi } from "vitest"; +import { afterEach, describe, expect, it, vi } from "vitest"; import { withFetchPreconnect } from "../test-utils/fetch-mock.js"; - -let isMinimaxVlmModel: typeof import("./minimax-vlm.js").isMinimaxVlmModel; -let minimaxUnderstandImage: typeof import("./minimax-vlm.js").minimaxUnderstandImage; - -beforeAll(async () => { - ({ isMinimaxVlmModel, minimaxUnderstandImage } = await import("./minimax-vlm.js")); -}); +import { isMinimaxVlmModel, minimaxUnderstandImage } from "./minimax-vlm.js"; describe("minimaxUnderstandImage apiKey normalization", () => { const priorFetch = global.fetch;