diff options
author | Rubén Dávila <rdavila84@gmail.com> | 2016-04-02 07:36:41 -0500 |
---|---|---|
committer | Rubén Dávila <rdavila84@gmail.com> | 2016-04-02 07:36:41 -0500 |
commit | fd090a2fab64332907953a1525cf5c822d983993 (patch) | |
tree | beb57291b94a985a3462d25c9ab0ef4bef122e24 /features/dashboard | |
parent | 09b7b766cbf42ed6e9e9246d494b60f05a7a28e7 (diff) | |
download | gitlab-ce-fd090a2fab64332907953a1525cf5c822d983993.tar.gz |
Fix bug related to filtering Issues by Label/Milestone.issue_14853
This problem only was affecting the dev env.
Diffstat (limited to 'features/dashboard')
-rw-r--r-- | features/dashboard/dashboard.feature | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/features/dashboard/dashboard.feature b/features/dashboard/dashboard.feature index c3b3577c449..db73309804c 100644 --- a/features/dashboard/dashboard.feature +++ b/features/dashboard/dashboard.feature @@ -6,6 +6,7 @@ Feature: Dashboard And project "Shop" has push event And project "Shop" has CI enabled And project "Shop" has CI build + And project "Shop" has labels: "bug", "feature", "enhancement" And I visit dashboard page Scenario: I should see projects list @@ -51,6 +52,13 @@ Feature: Dashboard Then The list should be sorted by "Oldest updated" @javascript + Scenario: Filtering Issues by label + Given project "Shop" has issue "Bugfix1" with label "feature" + When I visit dashboard issues page + And I filter the list by label "feature" + Then I should see "Bugfix1" in issues list + + @javascript Scenario: Visiting Project's issues after sorting Given I visit dashboard issues page And I sort the list by "Oldest updated" |