Files
nairobi/spec/system/verification/level_two_verification_spec.rb
Javi Martín e29ad8b505 Remove duplicate test
We already have a test in the `level_three_verification_spec` file that
checks the exact same things and then the letter verification. And, for
the SMS step, we also have a test in the `sms_spec` file.
2025-04-01 14:53:26 +02:00

16 lines
344 B
Ruby

require "rails_helper"
describe "Level two verification" do
context "In Spanish, with no fallbacks" do
before { allow(I18n.fallbacks).to receive(:[]).and_return([:es]) }
scenario "Works normally" do
user = create(:user)
login_as(user)
visit verification_path(locale: :es)
verify_residence
end
end
end