Fix flakey move slash command with unauthorized project

This commit is contained in:
Eric Eastwood 2018-06-13 17:09:50 -05:00
parent 69966fcb8d
commit aef29d00fe
1 changed files with 3 additions and 1 deletions

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