Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-11-17 18:09:28 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-11-17 18:09:28 +0300
commit6535cf9c79362862c31ea7d26c61541b84db18d9 (patch)
tree6d646edcf11d38e8ac23bceed1340ff8907b850d /qa
parent9a8f801d7352b7965fe690a599410fb50005ce67 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/page/component/issuable/sidebar.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/qa/qa/page/component/issuable/sidebar.rb b/qa/qa/page/component/issuable/sidebar.rb
index e41eb12a99d..cc39260ce38 100644
--- a/qa/qa/page/component/issuable/sidebar.rb
+++ b/qa/qa/page/component/issuable/sidebar.rb
@@ -65,15 +65,13 @@ module QA
def has_assignee?(username)
within_element(:assignee_block) do
- wait_until(reload: false) do
- has_text?(username)
- end
+ has_text?(username, wait: 120)
end
end
def has_no_assignee_named?(username)
within_element(:assignee_block) do
- has_no_text?(username, wait: QA::Support::Repeater::DEFAULT_MAX_WAIT_TIME)
+ has_no_text?(username, wait: 120)
end
end