From 502f981785029df8b5ab2704500fa4b5b02c5c70 Mon Sep 17 00:00:00 2001 From: Vivian Ha Date: Wed, 20 Nov 2024 11:44:05 -0500 Subject: [PATCH] [#176] Create accessibility spec for assigning users to the history graduate study room --- spec/features/accessibility_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spec/features/accessibility_spec.rb b/spec/features/accessibility_spec.rb index cd5bf87..aa7a19f 100644 --- a/spec/features/accessibility_spec.rb +++ b/spec/features/accessibility_spec.rb @@ -122,5 +122,13 @@ .according_to(:wcag2a, :wcag2aa, :wcag21a, :wcag21aa) end end + + context 'when assigning users to the history graduate study room' do + it 'complies with wcag' do + visit '/study_rooms/assign_users?general_area=History+Graduate+Study+Room' + expect(page).to be_axe_clean + .according_to(:wcag2a, :wcag2aa, :wcag21a, :wcag21aa) + end + end end end