From 0eafe995bc14a719dc0eda6eb72d228c8efcdd94 Mon Sep 17 00:00:00 2001 From: Shakker Date: Mon, 11 May 2026 23:24:33 +0100 Subject: [PATCH] test: verify voice call command activation --- src/plugins/bundled-plugin-metadata.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/bundled-plugin-metadata.test.ts b/src/plugins/bundled-plugin-metadata.test.ts index ada4a98ded8..82cbf6d38f9 100644 --- a/src/plugins/bundled-plugin-metadata.test.ts +++ b/src/plugins/bundled-plugin-metadata.test.ts @@ -482,8 +482,8 @@ describe("bundled plugin metadata", () => { ({ manifest }) => manifest.id === "voice-call", ); - expect(entry?.manifest.commandAliases).toContainEqual({ name: "voicecall" }); - expect(entry?.manifest.activation?.onCommands).toContain("voicecall"); + expect(entry?.manifest.commandAliases).toStrictEqual([{ name: "voicecall" }]); + expect(entry?.manifest.activation?.onCommands).toStrictEqual(["voicecall"]); }); it("keeps empty-config Gateway startup narrower than declared startup sidecars", () => {