mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
17 lines
562 B
TypeScript
17 lines
562 B
TypeScript
// Zalo tests cover index plugin behavior.
|
|
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("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",
|
|
});
|
|
});
|