fix(typo) adresse électronique

This commit is contained in:
Eric Leroy-Terquem 2023-06-28 10:24:37 +02:00
parent c1b4a868aa
commit 97949fc168
7 changed files with 14 additions and 14 deletions

View file

@ -21,27 +21,27 @@ describe 'Signing up:' do
visit commencer_path(path: procedure.path)
click_on "Créer un compte #{APPLICATION_NAME}"
expect(page).to have_selector('.suspect-email', visible: false)
fill_in 'Adresse éléctronique', with: 'bidou@yahoo.rf'
fill_in 'Adresse électronique', with: 'bidou@yahoo.rf'
fill_in 'Mot de passe', with: '12345'
end
scenario 'they can accept the suggestion', js: true do
expect(page).to have_selector('.suspect-email', visible: true)
click_on 'Oui'
expect(page).to have_field("Adresse éléctronique", :with => 'bidou@yahoo.fr')
expect(page).to have_field("Adresse électronique", :with => 'bidou@yahoo.fr')
expect(page).to have_selector('.suspect-email', visible: false)
end
scenario 'they can discard the suggestion', js: true do
expect(page).to have_selector('.suspect-email', visible: true)
click_on 'Non'
expect(page).to have_field("Adresse éléctronique", :with => 'bidou@yahoo.rf')
expect(page).to have_field("Adresse électronique", :with => 'bidou@yahoo.rf')
expect(page).to have_selector('.suspect-email', visible: false)
end
scenario 'they can fix the typo themselves', js: true do
expect(page).to have_selector('.suspect-email', visible: true)
fill_in 'Adresse éléctronique', with: 'bidou@yahoo.fr'
fill_in 'Adresse électronique', with: 'bidou@yahoo.fr'
blur
expect(page).to have_selector('.suspect-email', visible: false)
end