From e9d95c430952eef05a0238e084b524044989eb8a Mon Sep 17 00:00:00 2001 From: huntharo Date: Sat, 14 Mar 2026 08:42:32 -0400 Subject: [PATCH] Plugins/phone-control: update test command context --- extensions/phone-control/index.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/extensions/phone-control/index.test.ts b/extensions/phone-control/index.test.ts index 2c3462c82a9..1eee0ff9d64 100644 --- a/extensions/phone-control/index.test.ts +++ b/extensions/phone-control/index.test.ts @@ -42,6 +42,12 @@ function createCommandContext(args: string): PluginCommandContext { commandBody: `/phone ${args}`, args, config: {}, + requestConversationBinding: async () => ({ + status: "error", + message: "unsupported", + }), + detachConversationBinding: async () => ({ removed: false }), + getCurrentConversationBinding: async () => null, }; }