fix unit testing

This commit is contained in:
Beverly Nguyen
2025-03-10 16:54:02 -07:00
parent 1f14c1e570
commit 0a75856c2d
3 changed files with 1 additions and 11 deletions

View File

@@ -58,8 +58,6 @@ class HeaderNavigation(Navigation):
}, },
"accounts-or-dashboard": { "accounts-or-dashboard": {
"conversation", "conversation",
"inbox",
"monthly",
"service_dashboard", "service_dashboard",
"template_usage", "template_usage",
"view_notification", "view_notification",
@@ -161,8 +159,6 @@ class MainNavigation(Navigation):
}, },
"dashboard": { "dashboard": {
"conversation", "conversation",
"inbox",
"monthly",
"service_dashboard", "service_dashboard",
"template_usage", "template_usage",
"view_notification", "view_notification",

View File

@@ -8,7 +8,7 @@
{% endblock %} {% endblock %}
{% block backLink %} {% block backLink %}
{{ usaBackLink({ "href": url_for("main.inbox", service_id=current_service.id) }) }} {{ usaBackLink({ "href": url_for("main.service_dashboard", service_id=current_service.id) }) }}
{% endblock %} {% endblock %}
{% block maincolumn_content %} {% block maincolumn_content %}

View File

@@ -116,9 +116,6 @@ EXCLUDED_ENDPOINTS = tuple(
"history", "history",
"how_to_pay", "how_to_pay",
"inbound_sms_admin", "inbound_sms_admin",
"inbox",
"inbox_download",
"inbox_updates",
"index", "index",
"information_risk_management", "information_risk_management",
"information_security", "information_security",
@@ -134,7 +131,6 @@ EXCLUDED_ENDPOINTS = tuple(
"manage_template_folder", "manage_template_folder",
"manage_users", "manage_users",
"message_status", "message_status",
"monthly",
"multiple_languages", "multiple_languages",
"new_password", "new_password",
"notifications_sent_by_service", "notifications_sent_by_service",
@@ -183,7 +179,6 @@ EXCLUDED_ENDPOINTS = tuple(
"service_confirm_delete_email_reply_to", "service_confirm_delete_email_reply_to",
"service_confirm_delete_sms_sender", "service_confirm_delete_sms_sender",
"service_dashboard", "service_dashboard",
"service_dashboard_updates",
"service_delete_email_reply_to", "service_delete_email_reply_to",
"service_delete_sms_sender", "service_delete_sms_sender",
"service_edit_email_reply_to", "service_edit_email_reply_to",
@@ -217,7 +212,6 @@ EXCLUDED_ENDPOINTS = tuple(
"studio", "studio",
"support", "support",
"suspend_service", "suspend_service",
"template_history",
"template_usage", "template_usage",
"test_feature_flags", "test_feature_flags",
"tour_step", "tour_step",