kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

test(mcp): account for abort signal in device flow fetch assertion

Tin d7e3f397 64b912f8

+3 -2
+3 -2
packages/mcp/src/auth/device-flow.test.ts
··· 31 31 expect(result.device_code).toBe("device-code"); 32 32 expect(fetchMock).toHaveBeenCalledWith( 33 33 "https://api.example.com/api/auth/device/code", 34 - { 34 + expect.objectContaining({ 35 35 method: "POST", 36 36 headers: { "Content-Type": "application/json" }, 37 37 body: JSON.stringify({ client_id: "kaneo-mcp" }), 38 - }, 38 + signal: expect.any(AbortSignal), 39 + }), 39 40 ); 40 41 }); 41 42