mirror of
https://fastgit.cc/github.com/openclaw/openclaw
synced 2026-05-01 06:26:25 +08:00
14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
import { describe } from "vitest";
|
|
import { assertBundledChannelEntries } from "../../test/helpers/bundled-channel-entry.ts";
|
|
import entry from "./index.js";
|
|
import setupEntry from "./setup-entry.js";
|
|
|
|
describe("slack bundled entries", () => {
|
|
assertBundledChannelEntries({
|
|
entry,
|
|
expectedId: "slack",
|
|
expectedName: "Slack",
|
|
setupEntry,
|
|
});
|
|
});
|