Commit 02b5dfd4 authored by Stan Hu's avatar Stan Hu

Fix failing spec in ee/spec/features/boards/sidebar_spec.rb

If the sidebar Ajax request finishes after loading the Ajax request for
a specific issue, it will clear the assignee, leading to the test
failure. We work around this issue by waiting for the initial request to
be done.

https://gitlab.com/gitlab-org/gitlab/-/issues/216364
parent 1035dddc
...@@ -104,6 +104,8 @@ describe 'Issue Boards', :js do ...@@ -104,6 +104,8 @@ describe 'Issue Boards', :js do
it 'assignees to current user' do it 'assignees to current user' do
click_card(card2) click_card(card2)
wait_for_requests
page.within(find('.assignee')) do page.within(find('.assignee')) do
expect(find('.qa-assign-yourself')).to have_content('None') expect(find('.qa-assign-yourself')).to have_content('None')
......
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