Files
openclaw/test/test-helper-extension-import-boundary.test.ts
Peter Steinberger 0303af17f3 test: remove low-value implementation assertions (#121085)
* test: remove low-value implementation assertions

* test: refresh native i18n inventory
2026-08-09 08:48:48 -07:00

16 lines
636 B
TypeScript

// Test helper extension boundary tests enforce helper import boundaries.
import { describe, expect, it } from "vitest";
import { main } from "../scripts/check-test-helper-extension-import-boundary.mts";
import { createCapturedIo } from "./helpers/captured-io.js";
describe("test-helper extension import boundary inventory", () => {
it("script json output stays empty", async () => {
const captured = createCapturedIo();
const exitCode = await main(["--json"], captured.io);
expect(exitCode).toBe(0);
expect(captured.readStderr()).toBe("");
expect(JSON.parse(captured.readStdout())).toStrictEqual([]);
});
});