17 lines
443 B
Python
17 lines
443 B
Python
"""Run the focused vanilla HUX stop-control contract tests."""
|
|
|
|
from pathlib import Path
|
|
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."""
|
|
subprocess.run(
|
|
["node", "--test", str(ROOT / "testing/tests/test_hermes_hux_runtime_stop_node.js")],
|
|
cwd=ROOT,
|
|
check=True,
|
|
)
|