From decc275cabd4bab833d0ac7be17c67a707a7ecb3 Mon Sep 17 00:00:00 2001 From: Shakker Date: Mon, 11 May 2026 02:39:48 +0100 Subject: [PATCH] test: tighten configured state channel list --- src/channels/plugins/configured-state.test.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/channels/plugins/configured-state.test.ts b/src/channels/plugins/configured-state.test.ts index c8856f8682b1..76f2a9d623b6 100644 --- a/src/channels/plugins/configured-state.test.ts +++ b/src/channels/plugins/configured-state.test.ts @@ -9,9 +9,12 @@ const nodeRequire = createRequire(import.meta.url); describe("bundled channel configured-state metadata", () => { it("lists the shipped metadata-first configured-state channels", () => { - expect(listBundledChannelIdsWithConfiguredState()).toEqual( - expect.arrayContaining(["discord", "irc", "slack", "telegram"]), - ); + expect(listBundledChannelIdsWithConfiguredState()).toEqual([ + "discord", + "irc", + "slack", + "telegram", + ]); }); it("resolves Discord, Slack, Telegram, and IRC env probes without full plugin loads", () => {