Skip to content
Snippets Groups Projects
Commit 15108cba authored by Alfredo Sumaran's avatar Alfredo Sumaran
Browse files

Fix spec

parent 812ae973
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -42,7 +42,7 @@ feature 'Multiple issue updating from issues#index', feature: true do
visit namespace_project_issues_path(project.namespace, project)
 
find('#check_all_issues').click
find('.js-update-assignee').click
click_update_assignee_button
 
find('.dropdown-menu-user-link', text: user.username).click
click_update_issues_button
Loading
Loading
@@ -57,14 +57,11 @@ feature 'Multiple issue updating from issues#index', feature: true do
visit namespace_project_issues_path(project.namespace, project)
 
find('#check_all_issues').click
find('.js-update-assignee').click
click_update_assignee_button
 
click_link 'Unassigned'
click_update_issues_button
sleep 1 # needed
page.within first('.issue .controls') do
expect(page).to have_no_selector('.author_link')
end
expect(find('.issue:first-child .controls')).not_to have_css('.author_link')
end
end
 
Loading
Loading
@@ -95,8 +92,7 @@ feature 'Multiple issue updating from issues#index', feature: true do
find('.dropdown-menu-milestone a', text: "No Milestone").click
click_update_issues_button
 
sleep 1 # needed
expect(first('.issue')).to_not have_content milestone.title
expect(find('.issue:first-child')).to_not have_content milestone.title
end
end
 
Loading
Loading
@@ -112,6 +108,11 @@ feature 'Multiple issue updating from issues#index', feature: true do
create(:issue, project: project, milestone: milestone)
end
 
def click_update_assignee_button
find('.js-update-assignee').click
wait_for_ajax
end
def click_update_issues_button
find('.update_selected_issues').click
wait_for_ajax
Loading
Loading
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