Compare commits

...

1 Commits

Author SHA1 Message Date
Alexander Whitestone
1898f942d9 fix: update watchdog test for 5 checks including Kimi Heartbeat (closes #1512)
Some checks are pending
CI / test (pull_request) Waiting to run
CI / validate (pull_request) Waiting to run
Review Approval Gate / verify-review (pull_request) Waiting to run
run_health_checks() returns 5 checks (added check_kimi_heartbeat()),
but test expected 4. Updated test to expect 5 and verify Kimi Heartbeat
is present.
2026-04-14 22:44:23 -04:00

View File

@@ -303,9 +303,10 @@ class TestRunHealthChecks:
heartbeat_path=tmp_path / "missing.json",
)
assert len(report.checks) == 4
assert len(report.checks) == 5
check_names = {c.name for c in report.checks}
assert "WebSocket Gateway" in check_names
assert "Consciousness Loop" in check_names
assert "Heartbeat" in check_names
assert "Syntax Health" in check_names
assert "Kimi Heartbeat" in check_names