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>2022-05-26 12:08:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-26 12:08:11 +0300
commit026a5e91019666751e54629b91ebbdefec95c5bc (patch)
treef755e5ba388b0fed37faf7647ef841c58dbe5f6b /qa
parent864dae0d98424b463501c21eda1b633c14956fa9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'qa')
-rw-r--r--qa/qa/page/project/issue/index.rb6
-rw-r--r--qa/qa/specs/features/browser_ui/2_plan/issue/create_issue_spec.rb9
2 files changed, 0 insertions, 15 deletions
diff --git a/qa/qa/page/project/issue/index.rb b/qa/qa/page/project/issue/index.rb
index 0d495fc661e..7d162c6e48f 100644
--- a/qa/qa/page/project/issue/index.rb
+++ b/qa/qa/page/project/issue/index.rb
@@ -79,12 +79,6 @@ module QA
def has_no_issue?(issue)
has_no_element? :issuable_container, issuable_title: issue.title
end
-
- def wait_for_vue_issues_list_ff
- Support::Retrier.retry_until(max_duration: 60, reload_page: page, retry_on_exception: true, sleep_interval: 5) do
- find_element(:closed_issuables_tab)
- end
- end
end
end
end
diff --git a/qa/qa/specs/features/browser_ui/2_plan/issue/create_issue_spec.rb b/qa/qa/specs/features/browser_ui/2_plan/issue/create_issue_spec.rb
index 84e1332cc8a..b8f1824126d 100644
--- a/qa/qa/specs/features/browser_ui/2_plan/issue/create_issue_spec.rb
+++ b/qa/qa/specs/features/browser_ui/2_plan/issue/create_issue_spec.rb
@@ -4,7 +4,6 @@ module QA
RSpec.describe(
'Plan',
:smoke,
- feature_flag: { name: 'vue_issues_list', scope: :group },
quarantine: { issue: 'https://gitlab.com/gitlab-com/gl-infra/production/-/issues/7099', type: :investigating, only: { subdomain: 'pre' } }
) do
describe 'Issue creation' do
@@ -12,8 +11,6 @@ module QA
let(:closed_issue) { Resource::Issue.fabricate_via_api! { |issue| issue.project = project } }
before do
- Runtime::Feature.enable(:vue_issues_list, group: project.group)
-
Flow::Login.sign_in
end
@@ -26,9 +23,6 @@ module QA
Page::Project::Menu.perform(&:click_issues)
- # TODO: Remove this method when the `Runtime::Feature.enable` method call is removed
- Page::Project::Issue::Index.perform(&:wait_for_vue_issues_list_ff)
-
Page::Project::Issue::Index.perform do |index|
expect(index).to have_issue(issue)
end
@@ -49,9 +43,6 @@ module QA
Page::Project::Menu.perform(&:click_issues)
- # TODO: Remove this method when the `Runtime::Feature.enable` method call is removed
- Page::Project::Issue::Index.perform(&:wait_for_vue_issues_list_ff)
-
Page::Project::Issue::Index.perform do |index|
expect(index).not_to have_issue(closed_issue)