Merge remote-tracking branch 'prgs/master' into feat/issue-432-worktree-hygiene

# Conflicts:
#	docs/webui-local-dev.md
#	webui/app.py
This commit is contained in:
2026-07-09 08:41:37 -04:00
36 changed files with 3321 additions and 24 deletions
+6 -1
View File
@@ -29,8 +29,13 @@ class TestWebuiSkeleton(unittest.TestCase):
self.assertIn("Operator console", response.text)
self.assertIn("Read-only MVP", response.text)
def test_runtime_is_implemented(self):
response = self.client.get("/runtime")
self.assertEqual(response.status_code, 200)
self.assertIn("Runtime health", response.text)
def test_route_stubs_render(self):
for path in ("/runtime", "/audit"):
for path in ("/audit",):
with self.subTest(path=path):
response = self.client.get(path)
self.assertEqual(response.status_code, 200)