summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/3_create/design_management/modify_design_content_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/browser_ui/3_create/design_management/modify_design_content_spec.rb')
-rw-r--r--qa/qa/specs/features/browser_ui/3_create/design_management/modify_design_content_spec.rb37
1 files changed, 0 insertions, 37 deletions
diff --git a/qa/qa/specs/features/browser_ui/3_create/design_management/modify_design_content_spec.rb b/qa/qa/specs/features/browser_ui/3_create/design_management/modify_design_content_spec.rb
deleted file mode 100644
index 6a0c51245ad..00000000000
--- a/qa/qa/specs/features/browser_ui/3_create/design_management/modify_design_content_spec.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-# frozen_string_literal: true
-
-module QA
- RSpec.describe 'Create', quarantine: {
- issue: 'https://gitlab.com/gitlab-org/gitlab/-/issues/366839',
- type: :test_environment,
- only: { job: 'review-qa-*' }
- } do
- context 'Design Management' do
- let(:design) do
- Resource::Design.fabricate_via_browser_ui! do |design|
- design.filename = 'testfile.png'
- end
- end
-
- before do
- Flow::Login.sign_in
- end
-
- it(
- 'user adds a design and modifies it',
- testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347712'
- ) do
- design.issue.visit!
-
- Page::Project::Issue::Show.perform do |issue|
- expect(issue).to have_created_icon
- end
-
- Page::Project::Issue::Show.perform do |issue|
- issue.update_design(design.filename)
- expect(issue).to have_modified_icon
- end
- end
- end
- end
-end