From caeeecf399ab861ff68eaa106eb7cde2ff2b87dc Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 29 Mar 2026 09:09:23 +0100 Subject: [PATCH] refactor(test): centralize bundled channel test roots --- vitest.channel-paths.mjs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/vitest.channel-paths.mjs b/vitest.channel-paths.mjs index 06b0e9ea733..4c80c799170 100644 --- a/vitest.channel-paths.mjs +++ b/vitest.channel-paths.mjs @@ -1,10 +1,12 @@ +import { bundledPluginRoot } from "./scripts/lib/bundled-plugin-paths.mjs"; + export const channelTestRoots = [ - "extensions/telegram", - "extensions/discord", - "extensions/whatsapp", - "extensions/slack", - "extensions/signal", - "extensions/imessage", + bundledPluginRoot("telegram"), + bundledPluginRoot("discord"), + bundledPluginRoot("whatsapp"), + bundledPluginRoot("slack"), + bundledPluginRoot("signal"), + bundledPluginRoot("imessage"), "src/browser", "src/line", ];