2026-03-14 11:23:25 -07:00
|
|
|
export const channelTestRoots = [
|
2026-03-20 09:30:16 +01:00
|
|
|
"native-plugins/telegram",
|
|
|
|
|
"native-plugins/discord",
|
|
|
|
|
"native-plugins/whatsapp",
|
|
|
|
|
"native-plugins/slack",
|
|
|
|
|
"native-plugins/signal",
|
|
|
|
|
"native-plugins/imessage",
|
2026-03-14 11:23:25 -07:00
|
|
|
"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}/**`);
|