from app.admin_ui.navigation import nav def test_v4801_admin_menu_is_collapsed_by_default_on_primary_pages(): html = nav("operations") assert '
' in html assert '
' not in html def test_v4801_admin_menu_opens_when_current_page_is_admin_area(): html = nav("outbox") assert '
' in html assert '' in html