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

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"]);
});
});