Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/browser_ui/1_manage/login/oauth_login_with_github_spec.rb')
-rw-r--r--qa/qa/specs/features/browser_ui/1_manage/login/oauth_login_with_github_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/qa/qa/specs/features/browser_ui/1_manage/login/oauth_login_with_github_spec.rb b/qa/qa/specs/features/browser_ui/1_manage/login/oauth_login_with_github_spec.rb
deleted file mode 100644
index 3ac050c1649..00000000000
--- a/qa/qa/specs/features/browser_ui/1_manage/login/oauth_login_with_github_spec.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-module QA
- RSpec.describe 'Manage', :orchestrated, :oauth, product_group: :authentication_and_authorization do
- describe 'OAuth' do
- it 'connects and logs in with GitHub OAuth',
- testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/402405' 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