mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 10:41:23 +00:00
10 lines
483 B
TypeScript
10 lines
483 B
TypeScript
import { TELEGRAM_COMMAND_NAME_PATTERN as sdkTelegramCommandNamePattern } from "openclaw/plugin-sdk/telegram-command-config";
|
|
import { describe, expect, it } from "vitest";
|
|
import { TELEGRAM_COMMAND_NAME_PATTERN } from "./channel-config-api.js";
|
|
|
|
describe("telegram channel config api", () => {
|
|
it("keeps the command regex aligned with the public SDK contract", () => {
|
|
expect(TELEGRAM_COMMAND_NAME_PATTERN.toString()).toBe(sdkTelegramCommandNamePattern.toString());
|
|
});
|
|
});
|