This commit is contained in:
root
2026-05-17 14:06:06 +00:00
parent a3e8a4a96c
commit a91188ca68
29 changed files with 442 additions and 58 deletions

View File

@@ -23,15 +23,23 @@ class ControlPlaneServiceTests(unittest.TestCase):
)
def test_stack_summary_exposes_new_quick_links(self) -> None:
links = stack_summary()["quick_links"]
summary = stack_summary()
links = summary["quick_links"]
for key in (
"mitmproxy",
"vscode_server",
"uptime_kuma",
"pulseaudio_tcp",
"openclaw",
"neko_browser",
"neko_browser_1",
"neko_browser_2",
"neko_browser_3",
):
self.assertIn(key, links)
neko_instances = summary["neko_instances"]
self.assertEqual([item["id"] for item in neko_instances], [1, 2, 3])
self.assertEqual(links["neko_browser"], links["neko_browser_1"])
def test_deployment_report_marks_live_local_ready_when_checks_pass(self) -> None:
with tempfile.TemporaryDirectory() as tmp: