summaryrefslogtreecommitdiff
path: root/spec/features/groups/crm/contacts/create_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/groups/crm/contacts/create_spec.rb')
-rw-r--r--spec/features/groups/crm/contacts/create_spec.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/features/groups/crm/contacts/create_spec.rb b/spec/features/groups/crm/contacts/create_spec.rb
index d6c6e3f1745..b10b2afe35c 100644
--- a/spec/features/groups/crm/contacts/create_spec.rb
+++ b/spec/features/groups/crm/contacts/create_spec.rb
@@ -22,7 +22,9 @@ RSpec.describe 'Create a CRM contact', :js do
fill_in 'description', with: 'VIP'
click_button 'Save changes'
- expect(page).to have_content 'gitlab@example.com'
+ wait_for_requests
+
+ expect(group.contacts.first.email).to eq('gitlab@example.com')
expect(page).to have_current_path("#{group_crm_contacts_path(group)}/", ignore_query: true)
end
end