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.rb13
1 files changed, 10 insertions, 3 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
index 726e86ccdb4..6a0c51245ad 100644
--- 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
@@ -1,10 +1,14 @@
# frozen_string_literal: true
module QA
- RSpec.describe 'Create' do
+ 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! do |design|
+ Resource::Design.fabricate_via_browser_ui! do |design|
design.filename = 'testfile.png'
end
end
@@ -13,7 +17,10 @@ module QA
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
+ 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|