diff --git a/spec/features/accessibility_spec.rb b/spec/features/accessibility_spec.rb index cf15228..423b2a4 100644 --- a/spec/features/accessibility_spec.rb +++ b/spec/features/accessibility_spec.rb @@ -106,5 +106,13 @@ .according_to(:wcag2a, :wcag2aa, :wcag21a, :wcag21aa) end end + + context 'when visiting the study room assignments page' do + it 'complies with wcag' do + visit '/study_room_assignments' + expect(page).to be_axe_clean + .according_to(:wcag2a, :wcag2aa, :wcag21a, :wcag21aa) + end + end end end