diff --git a/app/assets/stylesheets/components/_radio-button.scss b/app/assets/stylesheets/components/_radio-button.scss index 47086847e86..a73f50f9b29 100644 --- a/app/assets/stylesheets/components/_radio-button.scss +++ b/app/assets/stylesheets/components/_radio-button.scss @@ -21,6 +21,7 @@ } .usa-radio__label--text { + h2, h3 { @include u-text('gray-70'); } diff --git a/app/views/idv/how_to_verify/show.html.erb b/app/views/idv/how_to_verify/show.html.erb index 3770ec8fd1f..93ac3f7b5c1 100644 --- a/app/views/idv/how_to_verify/show.html.erb +++ b/app/views/idv/how_to_verify/show.html.erb @@ -30,7 +30,7 @@ <%= t('doc_auth.tips.most_common') %> -

<%= t('doc_auth.headings.verify_online') %>

+

<%= t('doc_auth.headings.verify_online') %>

<%= t('doc_auth.info.verify_online_instruction') %>

<%= t('doc_auth.info.verify_online_description') %>

diff --git a/spec/features/accessibility/idv_pages_spec.rb b/spec/features/accessibility/idv_pages_spec.rb index b75b8212df3..774b8750155 100644 --- a/spec/features/accessibility/idv_pages_spec.rb +++ b/spec/features/accessibility/idv_pages_spec.rb @@ -13,6 +13,19 @@ expect_page_to_have_no_accessibility_violations(page) end + scenario 'how to verify page' do + allow(IdentityConfig.store).to receive(:in_person_proofing_enabled).and_return(true) + allow(IdentityConfig.store).to receive(:in_person_proofing_opt_in_enabled).and_return(true) + sign_in_and_2fa_user + + visit idv_welcome_url + complete_welcome_step + complete_agreement_step + + expect(current_path).to eq idv_how_to_verify_path + expect_page_to_have_no_accessibility_violations(page) + end + scenario 'cancel idv' do sign_in_and_2fa_user