Files
openclaw/test/test-runner-manifest.test.ts
Peter Steinberger 3725b38335 fix: restore ci gates
2026-03-23 14:32:10 +00:00

20 lines
720 B
TypeScript

import { describe, expect, it } from "vitest";
import { loadTestRunnerBehavior } from "../scripts/test-runner-manifest.mjs";
describe("loadTestRunnerBehavior", () => {
it("loads channel isolated entries from the behavior manifest", () => {
const behavior = loadTestRunnerBehavior();
const files = behavior.channels.isolated.map((entry) => entry.file);
expect(files).toContain(
"extensions/discord/src/monitor/message-handler.preflight.acp-bindings.test.ts",
);
});
it("loads channel isolated prefixes from the behavior manifest", () => {
const behavior = loadTestRunnerBehavior();
expect(behavior.channels.isolatedPrefixes).toContain("extensions/discord/src/monitor/");
});
});