test: add system group to nav state coverage

This commit is contained in:
James Smith
2026-04-13 21:10:14 +01:00
parent f1a029262b
commit 16b95e4804

View File

@@ -21,5 +21,5 @@ def test_nav_groups_have_data_group_attributes(client):
"""Each nav group must have a data-group attribute for state keying."""
resp = _logged_in_get(client, "/")
html = resp.data.decode()
for group in ["signals", "tracking", "space", "wireless", "intel"]:
for group in ["signals", "tracking", "space", "wireless", "intel", "system"]:
assert f'data-group="{group}"' in html, f"Missing data-group={group}"