summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb')
-rw-r--r--qa/qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/qa/qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb b/qa/qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb
deleted file mode 100644
index 1c7da930567..00000000000
--- a/qa/qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-module QA
- context :manage, :smoke do
- describe 'basic user login' do
- it 'user logs in using basic credentials' do
- Runtime::Browser.visit(:gitlab, Page::Main::Login)
- Page::Main::Login.act { sign_in_using_credentials }
-
- # TODO, since `Signed in successfully` message was removed
- # this is the only way to tell if user is signed in correctly.
- #
- Page::Menu::Main.perform do |menu|
- expect(menu).to have_personal_area
- end
- end
- end
- end
-end