From f8fdf93ec94b1ad43141a1463a6793082750d86e Mon Sep 17 00:00:00 2001 From: George Tsiolis Date: Fri, 7 Dec 2018 13:47:26 +0000 Subject: Show primary button when all labels are prioritized --- .../projects/labels/update_prioritization_spec.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'spec/features') diff --git a/spec/features/projects/labels/update_prioritization_spec.rb b/spec/features/projects/labels/update_prioritization_spec.rb index 996040fde02..055a0c83a11 100644 --- a/spec/features/projects/labels/update_prioritization_spec.rb +++ b/spec/features/projects/labels/update_prioritization_spec.rb @@ -115,6 +115,21 @@ describe 'Prioritize labels' do end end + it 'user can see a primary button when there are only prioritized labels', :js do + visit project_labels_path(project) + + page.within('.other-labels') do + all('.js-toggle-priority').each do |el| + el.click + end + wait_for_requests + end + + page.within('.breadcrumbs-container') do + expect(page).to have_link('New label') + end + end + it 'shows a help message about prioritized labels' do visit project_labels_path(project) -- cgit v1.2.1