Skip to content

Commit c38452d

Browse files
committed
test(io-intelligence): update test to match refactored provider implementation
- Remove explicit apiKey expectation from configuration test - Update test to expect original mockOptions instead of modified options - Ensure compatibility with BaseProvider refactoring - All 13 tests passing after update
1 parent 268fc70 commit c38452d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/api/providers/__tests__/io-intelligence.spec.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,7 @@ describe("IOIntelligenceHandler", () => {
129129
it("should initialize with correct configuration", () => {
130130
expect(handler).toBeInstanceOf(IOIntelligenceHandler)
131131
expect(handler["client"]).toBeDefined()
132-
expect(handler["options"]).toEqual({
133-
...mockOptions,
134-
apiKey: mockOptions.ioIntelligenceApiKey,
135-
})
132+
expect(handler["options"]).toEqual(mockOptions)
136133
})
137134

138135
it("should throw error when API key is missing", () => {

0 commit comments

Comments
 (0)