Skip to content

Commit

Permalink
Fix flaky feature spec by adding missing UI assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
amaierhofer committed Aug 9, 2024
1 parent abf5a8c commit c0a3db9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spec/features/self_registration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ class ReadOnly < ::Role

expect do
find_all('.btn-toolbar.bottom button[type="submit"]').first.click # submit
expect(page).to have_text(
'Du hast Dich erfolgreich registriert. Du erhältst in Kürze eine E-Mail mit der Anleitung, '\
'wie Du Deinen Account freischalten kannst.'
)

end.to change { Person.count }.by(1)
.and change { ActionMailer::Base.deliveries.count }.by(1)

is_expected.to have_text(
'Du hast Dich erfolgreich registriert. Du erhältst in Kürze eine E-Mail mit der Anleitung, '\
'wie Du Deinen Account freischalten kannst.'
)

person = Person.find_by(email: '[email protected]')
expect(person).to be_present

Expand Down

0 comments on commit c0a3db9

Please sign in to comment.