mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-16 20:40:45 +00:00
Verified: - pnpm build - pnpm check - pnpm test:macmini Co-authored-by: scoootscooob <167050519+scoootscooob@users.noreply.github.com> Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
15 lines
462 B
JavaScript
15 lines
462 B
JavaScript
export const channelTestRoots = [
|
|
"extensions/telegram",
|
|
"extensions/discord",
|
|
"extensions/whatsapp",
|
|
"extensions/slack",
|
|
"extensions/signal",
|
|
"extensions/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}/**`);
|