From 1b57e2c52f4b47838d74d6e305a301ec2b84c53b Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Tue, 24 Feb 2026 01:02:41 -0500 Subject: [PATCH] Gateway tests: include Russian and German stop forms --- src/gateway/chat-abort.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gateway/chat-abort.test.ts b/src/gateway/chat-abort.test.ts index db978d8b684..b008d7cc591 100644 --- a/src/gateway/chat-abort.test.ts +++ b/src/gateway/chat-abort.test.ts @@ -50,6 +50,8 @@ describe("isChatStopCommandText", () => { expect(isChatStopCommandText("停止")).toBe(true); expect(isChatStopCommandText("やめて")).toBe(true); expect(isChatStopCommandText("توقف")).toBe(true); + expect(isChatStopCommandText("остановись")).toBe(true); + expect(isChatStopCommandText("halt")).toBe(true); expect(isChatStopCommandText("stopp")).toBe(true); expect(isChatStopCommandText("pare")).toBe(true); expect(isChatStopCommandText("/status")).toBe(false);