diff options
author | Rubén Dávila <rdavila84@gmail.com> | 2016-01-22 18:43:21 -0500 |
---|---|---|
committer | Rubén Dávila <rdavila84@gmail.com> | 2016-01-22 18:43:21 -0500 |
commit | c3c92c7317df157e156c3a34ff9f4c562229479f (patch) | |
tree | c9e6581ee971c46ed9d00408b0ab77e18c1f7090 /features/project/issues | |
parent | 9ef468922c2ed5a02250414576fcf98ad1ac23cb (diff) | |
download | gitlab-ce-c3c92c7317df157e156c3a34ff9f4c562229479f.tar.gz |
Make default sorting preference work for Issues and MRs.issue_5546
Diffstat (limited to 'features/project/issues')
-rw-r--r-- | features/project/issues/issues.feature | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/features/project/issues/issues.feature b/features/project/issues/issues.feature index a91c5e0095d..0b3d03aa2a5 100644 --- a/features/project/issues/issues.feature +++ b/features/project/issues/issues.feature @@ -68,6 +68,13 @@ Feature: Project Issues Then The list should be sorted by "Oldest updated" @javascript + Scenario: Visiting Merge Requests after being sorted the list + Given I visit project "Shop" issues 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" + + @javascript Scenario: Visiting Merge Requests from a differente Project after sorting Given I visit project "Shop" merge requests page And I sort the list by "Oldest updated" |