diff --git a/src/channels/typing.test.ts b/src/channels/typing.test.ts index 7f78c9e2eef..6dcd28c69d3 100644 --- a/src/channels/typing.test.ts +++ b/src/channels/typing.test.ts @@ -232,7 +232,9 @@ describe("createTypingCallbacks", () => { // Should auto-stop expect(stop).toHaveBeenCalledTimes(1); - expect(consoleWarn).toHaveBeenCalledWith(expect.stringContaining("TTL exceeded")); + expect(consoleWarn).toHaveBeenCalledWith( + "[typing] TTL exceeded (10000ms), auto-stopping typing indicator", + ); consoleWarn.mockRestore(); });