Commit cc7cce9c authored by samdbeckham's avatar samdbeckham

Updates the specs that were looking for old btns

Ran another find + Replace on the specs
parent 92ed4027
...@@ -76,7 +76,7 @@ RSpec.describe 'shared/issuable/_approvals.html.haml' do ...@@ -76,7 +76,7 @@ RSpec.describe 'shared/issuable/_approvals.html.haml' do
render 'shared/issuable/approvals', form: form, issuable: merge_request, presenter: presenter render 'shared/issuable/approvals', form: form, issuable: merge_request, presenter: presenter
expect(rendered).not_to have_css('.btn-remove') expect(rendered).not_to have_css('.btn-danger')
end end
end end
end end
......
...@@ -194,7 +194,7 @@ RSpec.describe 'Admin Groups' do ...@@ -194,7 +194,7 @@ RSpec.describe 'Admin Groups' do
expect(page).to have_content('Developer') expect(page).to have_content('Developer')
end end
accept_confirm { find(:css, 'li', text: current_user.name).find(:css, 'a.btn-remove').click } accept_confirm { find(:css, 'li', text: current_user.name).find(:css, 'a.btn-danger').click }
visit group_group_members_path(group) visit group_group_members_path(group)
......
...@@ -70,7 +70,7 @@ RSpec.describe 'Groups > Members > Leave group' do ...@@ -70,7 +70,7 @@ RSpec.describe 'Groups > Members > Leave group' do
visit group_group_members_path(group) visit group_group_members_path(group)
expect(find(:css, '.project-members-page li', text: user.name)).not_to have_selector(:css, 'a.btn-remove') expect(find(:css, '.project-members-page li', text: user.name)).not_to have_selector(:css, 'a.btn-danger')
end end
it 'owner can not leave the group by url param if they are the last owner', :js do it 'owner can not leave the group by url param if they are the last owner', :js do
......
...@@ -64,7 +64,7 @@ RSpec.describe 'Groups > Members > Manage groups', :js do ...@@ -64,7 +64,7 @@ RSpec.describe 'Groups > Members > Manage groups', :js do
expect(page).to have_content(shared_with_group.name) expect(page).to have_content(shared_with_group.name)
accept_confirm do accept_confirm do
find(:css, '#tab-groups li', text: shared_with_group.name).find(:css, 'a.btn-remove').click find(:css, '#tab-groups li', text: shared_with_group.name).find(:css, 'a.btn-danger').click
end end
expect(page).not_to have_content(shared_with_group.name) expect(page).not_to have_content(shared_with_group.name)
......
...@@ -17,7 +17,7 @@ RSpec.describe "User deletes branch", :js do ...@@ -17,7 +17,7 @@ RSpec.describe "User deletes branch", :js do
fill_in("branch-search", with: "improve/awesome").native.send_keys(:enter) fill_in("branch-search", with: "improve/awesome").native.send_keys(:enter)
page.within(".js-branch-improve\\/awesome") do page.within(".js-branch-improve\\/awesome") do
accept_alert { find(".btn-remove").click } accept_alert { find(".btn-danger").click }
end end
wait_for_requests wait_for_requests
......
...@@ -101,7 +101,7 @@ RSpec.describe 'Branches' do ...@@ -101,7 +101,7 @@ RSpec.describe 'Branches' do
visit project_branches_filtered_path(project, state: 'all') visit project_branches_filtered_path(project, state: 'all')
expect(all('.all-branches').last).to have_selector('li', count: 20) expect(all('.all-branches').last).to have_selector('li', count: 20)
accept_confirm { first('.js-branch-item .btn-remove').click } accept_confirm { first('.js-branch-item .btn-danger').click }
expect(all('.all-branches').last).to have_selector('li', count: 19) expect(all('.all-branches').last).to have_selector('li', count: 19)
end end
...@@ -163,7 +163,7 @@ RSpec.describe 'Branches' do ...@@ -163,7 +163,7 @@ RSpec.describe 'Branches' do
expect(page).to have_content('fix') expect(page).to have_content('fix')
expect(find('.all-branches')).to have_selector('li', count: 1) expect(find('.all-branches')).to have_selector('li', count: 1)
accept_confirm { find('.js-branch-fix .btn-remove').click } accept_confirm { find('.js-branch-fix .btn-danger').click }
expect(page).not_to have_content('fix') expect(page).not_to have_content('fix')
expect(find('.all-branches')).to have_selector('li', count: 0) expect(find('.all-branches')).to have_selector('li', count: 0)
......
...@@ -333,7 +333,7 @@ RSpec.describe 'Environment' do ...@@ -333,7 +333,7 @@ RSpec.describe 'Environment' do
visit project_branches_filtered_path(project, state: 'all', search: 'feature') visit project_branches_filtered_path(project, state: 'all', search: 'feature')
remove_branch_with_hooks(project, user, 'feature') do remove_branch_with_hooks(project, user, 'feature') do
page.within('.js-branch-feature') { find('a.btn-remove').click } page.within('.js-branch-feature') { find('a.btn-danger').click }
end end
visit_environment(environment) visit_environment(environment)
......
...@@ -64,7 +64,7 @@ RSpec.describe 'Projects > Members > Groups with access list', :js do ...@@ -64,7 +64,7 @@ RSpec.describe 'Projects > Members > Groups with access list', :js do
it 'deletes group link' do it 'deletes group link' do
page.within(first('.group_member')) do page.within(first('.group_member')) do
accept_confirm { find('.btn-remove').click } accept_confirm { find('.btn-danger').click }
end end
wait_for_requests wait_for_requests
......
...@@ -102,7 +102,7 @@ RSpec.describe 'Project members list' do ...@@ -102,7 +102,7 @@ RSpec.describe 'Project members list' do
visit_members_page visit_members_page
expect(page).not_to have_selector("#edit_project_member_#{project_member.id}") expect(page).not_to have_selector("#edit_project_member_#{project_member.id}")
expect(page).not_to have_selector("#project_member_#{project_member.id} .btn-remove") expect(page).not_to have_selector("#project_member_#{project_member.id} .btn-danger")
end end
end end
......
...@@ -31,7 +31,7 @@ RSpec.describe 'Protected Branches', :js do ...@@ -31,7 +31,7 @@ RSpec.describe 'Protected Branches', :js do
fill_in 'branch-search', with: 'fix' fill_in 'branch-search', with: 'fix'
find('#branch-search').native.send_keys(:enter) find('#branch-search').native.send_keys(:enter)
expect(page).to have_css('.btn-remove.disabled') expect(page).to have_css('.btn-danger.disabled')
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment