mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-21 00:33:44 +02:00
14 lines
359 B
TypeScript
14 lines
359 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("irc bundled entries", () => {
|
|
assertBundledChannelEntries({
|
|
entry,
|
|
expectedId: "irc",
|
|
expectedName: "IRC",
|
|
setupEntry,
|
|
});
|
|
});
|