mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-20 13:41:30 +00:00
test(channel): remove unused outbound helper
This commit is contained in:
@@ -1,30 +0,0 @@
|
||||
import type { ChannelOutboundAdapter } from "../src/channels/plugins/types.js";
|
||||
import {
|
||||
loadBundledPluginPublicSurfaceSync,
|
||||
loadBundledPluginTestApiSync,
|
||||
} from "../src/test-utils/bundled-plugin-public-surface.js";
|
||||
|
||||
export const { discordOutbound } = loadBundledPluginTestApiSync<{
|
||||
discordOutbound: ChannelOutboundAdapter;
|
||||
}>("discord");
|
||||
export const { imessageOutbound } = loadBundledPluginPublicSurfaceSync<{
|
||||
imessageOutbound: ChannelOutboundAdapter;
|
||||
}>({
|
||||
pluginId: "imessage",
|
||||
artifactBasename: "src/outbound-adapter.js",
|
||||
});
|
||||
export const { signalOutbound } = loadBundledPluginTestApiSync<{
|
||||
signalOutbound: ChannelOutboundAdapter;
|
||||
}>("signal");
|
||||
export const { slackOutbound } = loadBundledPluginTestApiSync<{
|
||||
slackOutbound: ChannelOutboundAdapter;
|
||||
}>("slack");
|
||||
export const { telegramOutbound } = loadBundledPluginPublicSurfaceSync<{
|
||||
telegramOutbound: ChannelOutboundAdapter;
|
||||
}>({
|
||||
pluginId: "telegram",
|
||||
artifactBasename: "src/outbound-adapter.js",
|
||||
});
|
||||
export const { whatsappOutbound } = loadBundledPluginTestApiSync<{
|
||||
whatsappOutbound: ChannelOutboundAdapter;
|
||||
}>("whatsapp");
|
||||
Reference in New Issue
Block a user