summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/1_manage
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/browser_ui/1_manage')
-rw-r--r--qa/qa/specs/features/browser_ui/1_manage/login/login_via_oauth_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/qa/qa/specs/features/browser_ui/1_manage/login/login_via_oauth_spec.rb b/qa/qa/specs/features/browser_ui/1_manage/login/login_via_oauth_spec.rb
deleted file mode 100644
index dea85f68be2..00000000000
--- a/qa/qa/specs/features/browser_ui/1_manage/login/login_via_oauth_spec.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-module QA
- # This test is skipped instead of quarantine because continuously running
- # this test may cause the user to hit GitHub's rate limits thus blocking the user.
- # Related issue: https://gitlab.com/gitlab-org/gitlab/issues/196517
- context 'Manage', :orchestrated, :oauth, :skip do
- describe 'OAuth login' do
- it 'User logs in to GitLab with GitHub OAuth' do
- Runtime::Browser.visit(:gitlab, Page::Main::Login)
-
- Page::Main::Login.perform(&:sign_in_with_github)
- Vendor::Github::Page::Login.perform(&:login)
-
- expect(page).to have_content('Welcome to GitLab')
- end
- end
- end
-end