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", () => {