openclaw/vitest.channel-paths.mjs
2026-03-20 09:30:16 +01:00

15 lines
486 B
JavaScript

export const channelTestRoots = [
"native-plugins/telegram",
"native-plugins/discord",
"native-plugins/whatsapp",
"native-plugins/slack",
"native-plugins/signal",
"native-plugins/imessage",
"src/browser",
"src/line",
];
export const channelTestPrefixes = channelTestRoots.map((root) => `${root}/`);
export const channelTestInclude = channelTestRoots.map((root) => `${root}/**/*.test.ts`);
export const channelTestExclude = channelTestRoots.map((root) => `${root}/**`);