mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 20:00:42 +00:00
16 lines
522 B
TypeScript
16 lines
522 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("zalo bundled entries", () => {
|
|
assertBundledChannelEntries({
|
|
entry,
|
|
expectedId: "zalo",
|
|
expectedName: "Zalo",
|
|
setupEntry,
|
|
channelMessage: "declares the channel plugin without a runtime-barrel cycle",
|
|
setupMessage: "declares the setup plugin without a runtime-barrel cycle",
|
|
});
|
|
});
|