mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-29 23:23:35 +00:00
11 lines
364 B
TypeScript
11 lines
364 B
TypeScript
// Qa Matrix tests cover runtime api plugin behavior.
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
describe("matrix qa runtime api surface", () => {
|
|
it("keeps runner discovery lightweight", async () => {
|
|
const runtimeApi = await import("../runtime-api.js");
|
|
|
|
expect(Object.keys(runtimeApi).toSorted()).toEqual(["qaRunnerCliRegistrations"]);
|
|
});
|
|
});
|