fix(docker): materialize bundled TUI Ink package

This commit is contained in:
Brooklyn Nicholson
2026-04-27 14:44:18 -05:00
parent 4a9ac5c355
commit bac683d31d
2 changed files with 14 additions and 1 deletions

View File

@@ -122,3 +122,13 @@ def test_dockerfile_builds_tui_assets(dockerfile_text):
and "run build" in step
for step in _run_steps(dockerfile_text)
)
def test_dockerfile_materializes_local_tui_ink_package(dockerfile_text):
assert any(
"ui-tui" in step
and "node_modules/@hermes/ink" in step
and "packages/hermes-ink" in step
and "import('@hermes/ink')" in step
for step in _run_steps(dockerfile_text)
)