Commit f06a649c authored by Mark Lapierre's avatar Mark Lapierre

Merge branch 'qa-staging-45-fix-add-project-member-spec' into 'master'

Ignore user status emoji in assertion

Closes gitlab-org/quality/staging#45

See merge request gitlab-org/gitlab-ce!26085
parents 6a3b59f8 ec42a6e6
# frozen_string_literal: true
module QA
# Failure issue: https://gitlab.com/gitlab-org/quality/staging/issues/45
context 'Manage', :quarantine do
context 'Manage' do
describe 'Add project member' do
it 'user adds project member' do
Runtime::Browser.visit(:gitlab, Page::Main::Login)
......@@ -20,7 +19,7 @@ module QA
page.add_member(user.username)
end
expect(page).to have_content("#{user.name} @#{user.username} Given access")
expect(page).to have_content(/#{user.name} (. )?@#{user.username} Given access/)
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment