mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 05:00:43 +00:00
Merged via squash.
Prepared head SHA: 27241bd089
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Reviewed-by: @gumadeiras
10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
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"]);
|
|
});
|
|
});
|