Skip to content
Snippets Groups Projects
Unverified Commit 9e246420 authored by Abdul Wadood's avatar Abdul Wadood Committed by GitLab
Browse files

Merge branch '391275-fix_flaky_spec_admin_views_subscription_spec' into 'master'

Fix flaky spec admin_views_subscription_spec

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/151481



Merged-by: default avatarAbdul Wadood <awadood@gitlab.com>
Approved-by: default avatarAbhilash Kotte <akotte@gitlab.com>
Approved-by: default avatarAbdul Wadood <awadood@gitlab.com>
Co-authored-by: default avataraluthra2 <aluthra@gitlab.com>
parents 2ed2176a e2b76251
No related branches found
No related tags found
No related merge requests found
Pipeline #21741226 canceled
Loading
Loading
@@ -147,15 +147,13 @@
end
end
 
it 'shows the activation modal',
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/391275' do
it 'shows the activation modal' do
within_modal do
expect(page).to have_content('Activate subscription')
end
end
 
it 'displays an error when the activation fails',
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/390580' do
it 'displays an error when the activation fails' do
stub_request(:post, graphql_url).to_return(status: 422, body: '', headers: {})
 
within_modal do
Loading
Loading
@@ -165,7 +163,7 @@
end
end
 
it 'displays a connectivity error', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/391244' do
it 'displays a connectivity error' do
stub_request(:post, graphql_url)
.to_return(status: 500, body: '', headers: {})
 
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