summaryrefslogtreecommitdiff
path: root/features/dashboard
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-08-21 10:14:31 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2014-09-01 11:49:17 +0200
commit0cbc19f9449ffc6e624c0b7e22ea837468658377 (patch)
treee48375611c09c38a14f45adecbe31309f308798b /features/dashboard
parent174c00cf2c026a3bdc61d94b45195a5e5c99202f (diff)
downloadgitlab-ce-0cbc19f9449ffc6e624c0b7e22ea837468658377.tar.gz
Awesome shortcuts for GitLab
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/shortcuts.feature21
1 files changed, 21 insertions, 0 deletions
diff --git a/features/dashboard/shortcuts.feature b/features/dashboard/shortcuts.feature
new file mode 100644
index 00000000000..7c25b3926c9
--- /dev/null
+++ b/features/dashboard/shortcuts.feature
@@ -0,0 +1,21 @@
+@dashboard
+Feature: Dashboard shortcuts
+ Background:
+ Given I sign in as a user
+ And I visit dashboard page
+
+ @javascript
+ Scenario: Navigate to projects tab
+ Given I press "g" and "p"
+ Then the active main tab should be Projects
+
+ @javascript
+ Scenario: Navigate to issue tab
+ Given I press "g" and "i"
+ Then the active main tab should be Issues
+
+ @javascript
+ Scenario: Navigate to merge requests tab
+ Given I press "g" and "m"
+ Then the active main tab should be Merge Requests
+