"""Run the focused vanilla HUX stop-control contract tests.""" from pathlib import Path from hux_node_gate import require_node import subprocess ROOT = Path(__file__).resolve().parents[2] def test_hux_stop_runtime_node_contract() -> None: """The browser stop lane must remain owner-bound and truthfully partial.""" require_node() subprocess.run( ["node", "--test", str(ROOT / "testing/tests/test_hermes_hux_runtime_stop_node.js")], cwd=ROOT, check=True, )