diff options
author | Rubén Dávila <rdavila84@gmail.com> | 2016-01-22 17:00:35 -0500 |
---|---|---|
committer | Rubén Dávila <rdavila84@gmail.com> | 2016-01-22 17:00:35 -0500 |
commit | 7c520c7803524de0eefb8fbcc79d4c943a80c4de (patch) | |
tree | b18a7248b61a45d8b9b3d807408716d409a2ff5a /features/dashboard | |
parent | eccaa099d185c351f9e8762661f0dc004f11f256 (diff) | |
download | gitlab-ce-7c520c7803524de0eefb8fbcc79d4c943a80c4de.tar.gz |
Make sorting preference reusable for all projects.
Diffstat (limited to 'features/dashboard')
-rw-r--r-- | features/dashboard/dashboard.feature | 14 |
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" |