summaryrefslogtreecommitdiff
path: root/spec/features/admin
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-08-31 20:50:05 -0700
committerStan Hu <stanhu@gmail.com>2017-08-31 20:50:05 -0700
commitf045903541ace5cf4fd3c6e4a05ecfd264c1c621 (patch)
treeee6aaf013d92766e7184b3e0772e1e5fa99a20e4 /spec/features/admin
parentf2c60eba25fc001974a61373bc380528416932a2 (diff)
parent8713afe61fb1beaff4d550a60b88d274c47006ea (diff)
downloadgitlab-ce-f045903541ace5cf4fd3c6e4a05ecfd264c1c621.tar.gz
Merge branch 'master' into sh-headless-chrome-support
Diffstat (limited to 'spec/features/admin')
-rw-r--r--spec/features/admin/admin_projects_spec.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/features/admin/admin_projects_spec.rb b/spec/features/admin/admin_projects_spec.rb
index 77710f80036..f4f2505d436 100644
--- a/spec/features/admin/admin_projects_spec.rb
+++ b/spec/features/admin/admin_projects_spec.rb
@@ -36,6 +36,14 @@ describe "Admin::Projects" do
expect(page).to have_content(archived_project.name)
expect(page).to have_xpath("//span[@class='label label-warning']", text: 'archived')
end
+
+ it 'renders only archived projects', js: true do
+ find(:css, '#sort-projects-dropdown').click
+ click_link 'Show archived projects only'
+
+ expect(page).to have_content(archived_project.name)
+ expect(page).not_to have_content(project.name)
+ end
end
describe "GET /admin/projects/:namespace_id/:id" do