Files
openclaw/extensions/zalo/runtime-api.test.ts
2026-06-04 21:33:54 -04:00

12 lines
457 B
TypeScript

// Zalo tests cover runtime api plugin behavior.
import { describe, expect, it } from "vitest";
import * as runtime from "./runtime-api.js";
describe("zalo runtime api", () => {
it("loads the narrow runtime api without reentering setup surfaces", () => {
expect(Object.hasOwn(runtime, "zaloPlugin")).toBe(false);
expect(Object.hasOwn(runtime, "zaloSetupWizard")).toBe(false);
expect(typeof runtime.setZaloRuntime).toBe("function");
});
});