Merge branch 'fix-flakey-move-slash-command-unauthorized-project' into 'master'

Fix flakey time-sensitive move slash command with unauthorized project

Closes #47936

See merge request gitlab-org/gitlab-ce!19793
This commit is contained in:
Robert Speicher 2018-06-15 14:38:04 +00:00
commit 66bff49b9b

View file

@ -226,7 +226,9 @@ feature 'Issues > User uses quick actions', :js do
it 'does not move the issue' do
add_note("/move #{project_unauthorized.full_path}")
expect(page).not_to have_content 'Commands applied'
wait_for_requests
expect(page).to have_content 'Commands applied'
expect(issue.reload).to be_open
end
end