fixed testing

This commit is contained in:
Beverly Nguyen
2024-09-19 13:04:33 -07:00
parent 17c63c0790
commit 1368384fdf
3 changed files with 16 additions and 8 deletions

View File

@@ -197,7 +197,7 @@ def clear_goals():
return render_template(
"views/guidance/index.html",
navigation_links=guidance_nav(),
title="Clear Goals"
title="Clear Goals",
)
@@ -207,7 +207,7 @@ def rules_and_regulations():
return render_template(
"views/guidance/index.html",
navigation_links=guidance_nav(),
title="Rules and Regulations"
title="Rules and Regulations",
)
@@ -217,7 +217,7 @@ def establish_trust():
return render_template(
"views/guidance/index.html",
navigation_links=guidance_nav(),
title="Establish Trust"
title="Establish Trust",
)
@@ -227,7 +227,7 @@ def write_for_action():
return render_template(
"views/guidance/index.html",
navigation_links=guidance_nav(),
title="Write For Action"
title="Write For Action",
)
@@ -237,7 +237,7 @@ def multiple_languages():
return render_template(
"views/guidance/index.html",
navigation_links=guidance_nav(),
title="Multiple Languages"
title="Multiple Languages",
)
@@ -247,7 +247,7 @@ def get_the_word_out():
return render_template(
"views/guidance/index.html",
navigation_links=guidance_nav(),
title="Get the Word Out"
title="Get the Word Out",
)
@@ -257,7 +257,7 @@ def as_people_receive_text():
return render_template(
"views/guidance/index.html",
navigation_links=guidance_nav(),
title="As People Receive Text"
title="As People Receive Text",
)

View File

@@ -86,7 +86,7 @@ def guidance_nav():
"name": "As people receive texts",
"link": "main.as_people_receive_text",
},
]
],
},
{
"name": "Write for action",

View File

@@ -32,6 +32,7 @@ EXCLUDED_ENDPOINTS = tuple(
"api_keys",
"archive_service",
"archive_user",
"as_people_receive_text",
"begin_tour",
"billing_details",
"callbacks",
@@ -50,6 +51,7 @@ EXCLUDED_ENDPOINTS = tuple(
"choose_template",
"choose_template_to_copy",
"clear_cache",
"clear_goals",
"confirm_edit_user_email",
"confirm_edit_user_mobile_number",
"confirm_redact_template",
@@ -87,6 +89,7 @@ EXCLUDED_ENDPOINTS = tuple(
"edit_user_permissions",
"email_not_received",
"error",
"establish_trust",
"features",
"features_sms",
"find_services_by_name",
@@ -103,8 +106,10 @@ EXCLUDED_ENDPOINTS = tuple(
"get_notifications_as_json",
"get_started",
"get_started_old",
"get_the_word_out",
"go_to_dashboard_after_tour",
"guest_list",
"guidance",
"guidance_index",
"history",
"how_to_pay",
@@ -127,6 +132,7 @@ EXCLUDED_ENDPOINTS = tuple(
"manage_users",
"message_status",
"monthly",
"multiple_languages",
"new_password",
"notifications_sent_by_service",
"old_guest_list",
@@ -161,6 +167,7 @@ EXCLUDED_ENDPOINTS = tuple(
"revalidate_email_sent",
"revoke_api_key",
"roadmap",
"rules_and_regulations",
"security",
"security_policy",
"send_files_by_email",
@@ -250,6 +257,7 @@ EXCLUDED_ENDPOINTS = tuple(
"view_template_version",
"view_template_versions",
"who_its_for",
"write_for_action",
},
)
)