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 failed
CI / test (pull_request) Failing after 1m48s
CI / validate (pull_request) Failing after 1m15s
Review Approval Gate / verify-review (pull_request) Successful in 5s
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