första UI/operatörs-pass

This commit is contained in:
larssand
2026-07-02 19:47:09 +02:00
parent 009c54b206
commit 7568767946
3 changed files with 181 additions and 14 deletions

View File

@@ -36,6 +36,14 @@ class DashboardTests(unittest.TestCase):
self.assertIn("Save streams", HTML)
self.assertIn("function saveStreamSelection", HTML)
def test_dashboard_includes_operator_guidance(self):
self.assertIn("Operator Guidance", HTML)
self.assertIn("function buildActionPlan", HTML)
def test_dashboard_links_evidence_to_graylog(self):
self.assertIn("function graylogEvidenceLink", HTML)
self.assertIn("/search?rangetype=relative", HTML)
if __name__ == "__main__":
unittest.main()