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-12-04 09:09:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-04 09:09:34 +0300
commita2f16969fa9bb982d5ec01f18efff5eabfc89a67 (patch)
tree881f7d8db86c1758fd21c070908a26b3d1d032c8 /qa
parentedf27428120b9726e34e577e5b1d3371c74baf1d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/page/group/new.rb5
-rw-r--r--qa/qa/page/project/pipeline/index.rb2
-rw-r--r--qa/qa/resource/group.rb1
-rw-r--r--qa/qa/resource/sandbox.rb1
4 files changed, 2 insertions, 7 deletions
diff --git a/qa/qa/page/group/new.rb b/qa/qa/page/group/new.rb
index 88e7121dbe0..5f43cfb49c0 100644
--- a/qa/qa/page/group/new.rb
+++ b/qa/qa/page/group/new.rb
@@ -7,7 +7,6 @@ module QA
view 'app/views/shared/_group_form.html.haml' do
element :group_path_field, 'text_field :path' # rubocop:disable QA/ElementWithPattern
element :group_name_field, 'text_field :name' # rubocop:disable QA/ElementWithPattern
- element :group_description_field, 'text_area :description' # rubocop:disable QA/ElementWithPattern
end
view 'app/views/groups/_new_group_fields.html.haml' do
@@ -20,10 +19,6 @@ module QA
fill_in 'group_name', with: path
end
- def set_description(description)
- fill_in 'group_description', with: description
- end
-
def set_visibility(visibility)
choose visibility
end
diff --git a/qa/qa/page/project/pipeline/index.rb b/qa/qa/page/project/pipeline/index.rb
index bad492591ca..3bf2a80f32f 100644
--- a/qa/qa/page/project/pipeline/index.rb
+++ b/qa/qa/page/project/pipeline/index.rb
@@ -31,6 +31,8 @@ module QA
end
def wait_for_latest_pipeline_status
+ wait_until(max_duration: 30, reload: true, sleep_interval: 5) { has_pipeline? }
+
wait_until(reload: false, max_duration: 360) do
within_element_by_index(:pipeline_commit_status, 0) { yield }
end
diff --git a/qa/qa/resource/group.rb b/qa/qa/resource/group.rb
index 2e29ec9a6a7..135c3dea628 100644
--- a/qa/qa/resource/group.rb
+++ b/qa/qa/resource/group.rb
@@ -36,7 +36,6 @@ module QA
Page::Group::New.perform do |group_new|
group_new.set_path(path)
- group_new.set_description(description)
group_new.set_visibility('Public')
group_new.create
end
diff --git a/qa/qa/resource/sandbox.rb b/qa/qa/resource/sandbox.rb
index 376600b727a..ae183d55d89 100644
--- a/qa/qa/resource/sandbox.rb
+++ b/qa/qa/resource/sandbox.rb
@@ -31,7 +31,6 @@ module QA
Page::Group::New.perform do |group|
group.set_path(path)
- group.set_description('GitLab QA Sandbox Group')
group.set_visibility('Public')
group.create
end