mirror of https://github.com/openclaw/openclaw.git
17 lines
587 B
JavaScript
17 lines
587 B
JavaScript
import { bundledPluginRoot } from "./scripts/lib/bundled-plugin-paths.mjs";
|
|
|
|
export const channelTestRoots = [
|
|
bundledPluginRoot("telegram"),
|
|
bundledPluginRoot("discord"),
|
|
bundledPluginRoot("whatsapp"),
|
|
bundledPluginRoot("slack"),
|
|
bundledPluginRoot("signal"),
|
|
bundledPluginRoot("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}/**`);
|