Skip to content
Snippets Groups Projects
Commit c9439af4 authored by Andrejs Cunskis's avatar Andrejs Cunskis Committed by Mayra Cabrera
Browse files

Merge branch 'e2e/remove-create-issue-preprod' into 'master'

Remove test from running in preprod

See merge request gitlab-org/gitlab!88042
parent e442c111
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -12,7 +12,12 @@ module QA
Flow::Login.sign_in
end
 
it 'creates an issue', :mobile, testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347989' do
it(
'creates an issue',
:mobile,
testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347989',
except: { subdomain: 'pre' }
) do
issue = Resource::Issue.fabricate_via_browser_ui! { |issue| issue.project = project }
 
Page::Project::Menu.perform(&:click_issues)
Loading
Loading
@@ -25,7 +30,12 @@ module QA
end
end
 
it 'closes an issue', :mobile, testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347967' do
it(
'closes an issue',
:mobile,
testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347967',
except: { subdomain: 'pre' }
) do
closed_issue.visit!
 
Page::Project::Issue::Show.perform do |issue_page|
Loading
Loading
@@ -61,7 +71,7 @@ module QA
# The following example is excluded from running in `review-qa-smoke` job
# as it proved to be flaky when running against Review App
# See https://gitlab.com/gitlab-com/www-gitlab-com/-/issues/11568#note_621999351
it 'comments on an issue with an attachment', testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347946', except: { job: 'review-qa-smoke' } do
it 'comments on an issue with an attachment', testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347946', except: { subdomain: 'pre', job: 'review-qa-smoke' } do
Page::Project::Issue::Show.perform do |show|
show.comment('See attached image for scale', attachment: file_to_attach)
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment