test(mattermost): drop duplicate api smoke

This commit is contained in:
Peter Steinberger
2026-04-23 11:38:51 +01:00
parent 7b5b21c0e1
commit 477a77284a

View File

@@ -1,11 +0,0 @@
import { describe, expect, it } from "vitest";
describe("mattermost bundled api seam", () => {
it("loads the narrow channel plugin api", async () => {
const mod = await import("./channel-plugin-api.js");
expect(Object.keys(mod).toSorted()).toEqual(["mattermostPlugin", "mattermostSetupPlugin"]);
expect(mod.mattermostPlugin.id).toBe("mattermost");
expect(mod.mattermostSetupPlugin.id).toBe("mattermost");
});
});