Fix TS errors: relax bullmq import typing, adjust job loader, and cast chart mock as any

This commit is contained in:
2026-05-16 14:39:00 +02:00
parent 31503624f6
commit ceb664f56c
2 changed files with 3 additions and 3 deletions
@@ -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(<TradingViewChart ticker="TEST" />);