summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/login/standard_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/login/standard_spec.rb')
-rw-r--r--qa/qa/specs/features/login/standard_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/qa/qa/specs/features/login/standard_spec.rb b/qa/qa/specs/features/login/standard_spec.rb
new file mode 100644
index 00000000000..ecb3f0cb68c
--- /dev/null
+++ b/qa/qa/specs/features/login/standard_spec.rb
@@ -0,0 +1,14 @@
+module QA
+ feature 'standard root login', :ce, :ee do
+ scenario 'user logs in using credentials' do
+ Page::Main::Entry.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::Main::Menu.perform do |menu|
+ expect(menu).to have_personal_area
+ end
+ end
+ end
+end