Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ typecheck: sdk-build action-build
npm --prefix action_plane/typescript run typecheck
npm --prefix bot_delivery/typescript run typecheck

test:
test: bot-build
uv run pytest -q tests/unit

catalog:
Expand Down
8 changes: 8 additions & 0 deletions tests/unit/test_bot_delivery_application_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,11 @@ def test_public_bot_contract_does_not_export_trusted_fact_or_intent_factories()
).read_text(encoding="utf-8")
assert "createPrivateBotActionBridge" not in action_public_source
assert "TrustedPrivateEffectFacts" not in action_public_source


def test_unit_lane_builds_the_local_typescript_dependency_graph() -> None:
makefile = (ROOT / "Makefile").read_text(encoding="utf-8")
target_lines = set(makefile.splitlines())

assert "test: bot-build" in target_lines
assert "bot-build: sdk-build action-build" in target_lines
Loading