mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:40:44 +00:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import setupEntry from "./setup-entry.js";
|
|
|
|
describe("qa-channel setup entry", () => {
|
|
it("exposes the bundled setup-entry contract", () => {
|
|
expect(setupEntry.kind).toBe("bundled-channel-setup-entry");
|
|
expect(typeof setupEntry.loadSetupPlugin).toBe("function");
|
|
});
|
|
});
|