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:
authorPhil Hughes <me@iamphill.com>2016-02-23 18:59:51 +0300
committerPhil Hughes <me@iamphill.com>2016-02-24 11:28:33 +0300
commitb82569e5eaa5c46215c092fb23dd946a9d59d734 (patch)
tree143d101e2f496e1e634bd112d1dca1ab590ab8e8 /features/dashboard
parent30b56fb017f29b2f49335ba4791debc063bb7607 (diff)
fixed tests
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/event_filters.feature12
1 files changed, 9 insertions, 3 deletions
diff --git a/features/dashboard/event_filters.feature b/features/dashboard/event_filters.feature
index 96399ea21a6..8c3ff64164f 100644
--- a/features/dashboard/event_filters.feature
+++ b/features/dashboard/event_filters.feature
@@ -43,10 +43,16 @@ Feature: Event Filters
And I should not see new member event
When I click "team" event filter
And I visit dashboard activity page
- Then I should see push event
+ Then I should not see push event
And I should see new member event
And I should not see merge request event
When I click "push" event filter
- Then I should not see push event
- And I should see new member event
+ And I visit dashboard activity page
+ Then I should see push event
+ And I should not see new member event
And I should not see merge request event
+ When I click "merge" event filter
+ And I visit dashboard activity page
+ Then I should see merge request event
+ And I should not see push event
+ And I should not see new member event