diff options
Diffstat (limited to 'features/dashboard/dashboard.feature')
-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" |