summaryrefslogtreecommitdiff
path: root/features/dashboard
diff options
context:
space:
mode:
authorRubén Dávila <rdavila84@gmail.com>2016-01-22 17:00:35 -0500
committerRubén Dávila <rdavila84@gmail.com>2016-01-22 17:00:35 -0500
commit7c520c7803524de0eefb8fbcc79d4c943a80c4de (patch)
treeb18a7248b61a45d8b9b3d807408716d409a2ff5a /features/dashboard
parenteccaa099d185c351f9e8762661f0dc004f11f256 (diff)
downloadgitlab-ce-7c520c7803524de0eefb8fbcc79d4c943a80c4de.tar.gz
Make sorting preference reusable for all projects.
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/dashboard.feature14
1 files changed, 14 insertions, 0 deletions
diff --git a/features/dashboard/dashboard.feature b/features/dashboard/dashboard.feature
index 9060e9d0ad2..c3b3577c449 100644
--- a/features/dashboard/dashboard.feature
+++ b/features/dashboard/dashboard.feature
@@ -51,9 +51,23 @@ Feature: Dashboard
Then The list should be sorted by "Oldest updated"
@javascript
+ Scenario: Visiting Project's issues after sorting
+ Given I visit dashboard issues page
+ And I sort the list by "Oldest updated"
+ And I visit project "Shop" issues page
+ Then The list should be sorted by "Oldest updated"
+
+ @javascript
Scenario: Sorting Merge Requests
Given I visit dashboard merge requests page
And I sort the list by "Oldest updated"
And I visit dashboard activity page
And I visit dashboard merge requests page
Then The list should be sorted by "Oldest updated"
+
+ @javascript
+ Scenario: Visiting Project's merge requests after sorting
+ Given I visit dashboard merge requests page
+ And I sort the list by "Oldest updated"
+ And I visit project "Shop" merge requests page
+ Then The list should be sorted by "Oldest updated"