s
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user