Files
openclaw/extensions/mattermost/api.test.ts
Peter Steinberger 6d3eff97a0 refactor(channels): privatize Mattermost and MSTeams test seams (#107924)
* refactor(mattermost): privatize internal test seams

* refactor(msteams): privatize internal test seams

* docs(mattermost): fix public API import path

* refactor(deadcode): shrink export baseline
2026-07-14 19:11:46 -07:00

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");
});
});