mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-26 04:45:13 +00:00
11 lines
408 B
TypeScript
11 lines
408 B
TypeScript
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");
|
|
});
|
|
});
|