summaryrefslogtreecommitdiff
path: root/features/dashboard
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-07-19 15:29:32 +0000
committerRémy Coutable <remy@rymai.me>2017-07-19 15:29:32 +0000
commit3fd587de56ba0e2d2da396f05a1d95b44eeb904e (patch)
treec91abb4400aad381e827d5fafe8187d0100eab28 /features/dashboard
parent1df5380ef91022c640490290e18dca19f10a505c (diff)
parent591cb609339466459d66c4ae178a8c9b3130042b (diff)
downloadgitlab-ce-3fd587de56ba0e2d2da396f05a1d95b44eeb904e.tar.gz
Merge branch '23036-replace-dashboard-activity-spinach' into 'master'
Replaces 'dashboard/event_filters.feature' spinach with rspec See merge request !12651
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/event_filters.feature58
1 files changed, 0 insertions, 58 deletions
diff --git a/features/dashboard/event_filters.feature b/features/dashboard/event_filters.feature
deleted file mode 100644
index 8c3ff64164f..00000000000
--- a/features/dashboard/event_filters.feature
+++ /dev/null
@@ -1,58 +0,0 @@
-@dashboard
-Feature: Event Filters
- Background:
- Given I sign in as a user
- And I own a project
- And this project has push event
- And this project has new member event
- And this project has merge request event
- And I visit dashboard activity page
-
- @javascript
- Scenario: I should see all events
- Then I should see push event
- 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 activity 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 activity page
- 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
- 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