mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:10:44 +00:00
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
import { assertBundledChannelEntries } from "openclaw/plugin-sdk/channel-test-helpers";
|
|
import { describe } from "vitest";
|
|
import entry from "./index.js";
|
|
import setupEntry from "./setup-entry.js";
|
|
|
|
describe("slack bundled entries", () => {
|
|
assertBundledChannelEntries({
|
|
entry,
|
|
expectedId: "slack",
|
|
expectedName: "Slack",
|
|
setupEntry,
|
|
});
|
|
});
|