Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Denisov <1101.debian@gmail.com>2012-12-03 04:29:07 +0400
committerAlex Denisov <1101.debian@gmail.com>2013-01-09 23:30:20 +0400
commit97d17cf835ebe5121330a3775ae58bcab792851e (patch)
treeb5119e577d097c7cf3bced028a8e584a91dc0c09 /features/dashboard
parentb255c3c44b849510e19be88833bb73425b8d0e9d (diff)
Event filters stores at cookies.
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/event_filters.feature19
1 files changed, 19 insertions, 0 deletions
diff --git a/features/dashboard/event_filters.feature b/features/dashboard/event_filters.feature
index 050d98951a8..158d3e1cfa9 100644
--- a/features/dashboard/event_filters.feature
+++ b/features/dashboard/event_filters.feature
@@ -12,20 +12,39 @@ Feature: Event filters
And I should see new member event
And I should see merge request event
+ @javascript
Scenario: I should see only pushed events
When I click "push" event filter
Then I should see push event
And I should not see new member event
And I should not see merge request event
+ @javascript
Scenario: I should see only joined events
When I click "team" event filter
Then I should see new member event
And I should not see push event
And I should not see merge request event
+ @javascript
Scenario: I should see only merged events
When I click "merge" event filter
Then I should see merge request event
And I should not see push event
And I should not see new member event
+
+ @javascript
+ Scenario: I should see only selected events while page reloaded
+ When I click "push" event filter
+ And I visit dashboard page
+ Then I should see push event
+ And I should not see new member event
+ When I click "team" event filter
+ And I visit dashboard page
+ Then I should see push event
+ And I should see new member event
+ And I should not see merge request event
+ When I click "push" event
+ Then I should not see push event
+ And I should see new member event
+ And I should not see merge request event