Skip to content
Snippets Groups Projects
Commit ee0f5bb5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Add test for archive toggle feature

parent 2c431f89
No related branches found
No related tags found
No related merge requests found
Loading
@@ -12,6 +12,7 @@ v 8.6.0 (unreleased)
Loading
@@ -12,6 +12,7 @@ v 8.6.0 (unreleased)
- Allow search for logged out users - Allow search for logged out users
- Don't show Issues/MRs from archived projects in Groups view - Don't show Issues/MRs from archived projects in Groups view
- Increase the notes polling timeout over time (Roberto Dip) - Increase the notes polling timeout over time (Roberto Dip)
- Add ability to show archived projects on dashboard, explore and group pages
   
v 8.5.4 v 8.5.4
- Do not cache requests for badges (including builds badge) - Do not cache requests for badges (including builds badge)
Loading
Loading
Loading
@@ -10,3 +10,8 @@ Feature: Dashboard Archived Projects
Loading
@@ -10,3 +10,8 @@ Feature: Dashboard Archived Projects
Scenario: I should see non-archived projects on dashboard Scenario: I should see non-archived projects on dashboard
Then I should see "Shop" project link Then I should see "Shop" project link
And I should not see "Forum" project link And I should not see "Forum" project link
Scenario: I toggle show of archived projects on dashboard
When I click "Show archived projects" link
Then I should see "Shop" project link
And I should see "Forum" project link
Loading
@@ -19,4 +19,8 @@ class Spinach::Features::DashboardArchivedProjects < Spinach::FeatureSteps
Loading
@@ -19,4 +19,8 @@ class Spinach::Features::DashboardArchivedProjects < Spinach::FeatureSteps
step 'I should see "Forum" project link' do step 'I should see "Forum" project link' do
expect(page).to have_link "Forum" expect(page).to have_link "Forum"
end end
step 'I click "Show archived projects" link' do
click_link "Show archived projects"
end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment