Release govoplan-ops v0.1.22: unify interface contracts and documentation
Module Package Release / publish-packages (push) Successful in 11s

This commit is contained in:
2026-09-08 01:32:48 +02:00
parent ac6b211827
commit 489d44d18d
7 changed files with 22 additions and 11 deletions
+7
View File
@@ -0,0 +1,7 @@
import assert from "node:assert/strict";
import { readFileSync } from "node:fs";
const page = readFileSync(new URL("../src/features/ops/OpsPage.tsx", import.meta.url), "utf8");
assert.match(page, /id: "actions",\s*header: "",\s*width: 72,\s*sticky: "end",\s*resizable: false,\s*align: "right"/);
assert.match(page, /<TableActionGroup\s*minimumSlots=\{1\}/);
console.log("Runtime node controls use the shared pinned action layout.");