diff --git a/app/components/__tests__/TradingViewChart.test.tsx b/app/components/__tests__/TradingViewChart.test.tsx index aae60ea..6cadf0b 100644 --- a/app/components/__tests__/TradingViewChart.test.tsx +++ b/app/components/__tests__/TradingViewChart.test.tsx @@ -28,7 +28,7 @@ describe("TradingViewChart", () => { timeScale: () => ({ applyOptions: vi.fn(), fitContent: vi.fn() }), addSeries: vi.fn(() => mockSeries), remove: vi.fn(), - }); + } as any); }); it("renders the ticker symbol as heading", () => { @@ -77,7 +77,7 @@ describe("TradingViewChart", () => { timeScale: () => ({ applyOptions: vi.fn(), fitContent: vi.fn() }), addSeries: mockAddSeries, remove: vi.fn(), - }); + } as any); render(); diff --git a/app/lib/queue.ts b/app/lib/queue.ts index ab554fb..ebe2c87 100644 --- a/app/lib/queue.ts +++ b/app/lib/queue.ts @@ -1,5 +1,5 @@ import pkg from "bullmq"; -const { Queue, Worker, QueueScheduler } = pkg; +const { Queue, Worker, QueueScheduler } = pkg as any; import IORedis from "ioredis"; import { OpenRouterClient } from "./openrouter"; import { TradingGraph } from "../agents/tradingGraph";