You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
410 B
13 lines
410 B
3 years ago
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe "A11y testing" do
|
||
|
let!(:user) { FactoryBot.create(:user) }
|
||
|
scenario 'case logs index is an accessible page', js: true do
|
||
|
visit("/case_logs")
|
||
|
fill_in("user_email", with: "test@example.com")
|
||
|
fill_in("user_password", with: "pAssword1")
|
||
|
click_button("Sign in")
|
||
|
expect(page).to have_current_path("/case_logs")
|
||
|
expect(page).to be_axe_clean
|
||
|
end
|
||
|
end
|