mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-25 11:01:10 +00:00
* refactor(mattermost): privatize internal test seams * refactor(msteams): privatize internal test seams * docs(mattermost): fix public API import path * refactor(deadcode): shrink export baseline
10 lines
340 B
TypeScript
10 lines
340 B
TypeScript
// Mattermost tests cover the documented public helper API.
|
|
import { describe, expect, it } from "vitest";
|
|
import { buildButtonAttachments } from "./api.js";
|
|
|
|
describe("@openclaw/mattermost api", () => {
|
|
it("exports the interactive-button attachment builder", () => {
|
|
expect(typeof buildButtonAttachments).toBe("function");
|
|
});
|
|
});
|