Commit 04178d72 authored by Phil Hughes's avatar Phil Hughes

fixed move issue specs

[ci skip]
parent 625d3442
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
:class="{ disabled: updateLoading || !isSubmitEnabled }" :class="{ disabled: updateLoading || !isSubmitEnabled }"
type="submit" type="submit"
:disabled="updateLoading || !isSubmitEnabled" :disabled="updateLoading || !isSubmitEnabled"
@click="updateIssuable"> @click.prevent="updateIssuable">
Save changes Save changes
<i <i
class="fa fa-spinner fa-spin" class="fa fa-spinner fa-spin"
......
...@@ -204,7 +204,7 @@ describe Projects::IssuesController do ...@@ -204,7 +204,7 @@ describe Projects::IssuesController do
body = JSON.parse(response.body) body = JSON.parse(response.body)
expect(body['assignees'].first.keys) expect(body['assignees'].first.keys)
.to match_array(%w(id name username avatar_url)) .to match_array(%w(id name username avatar_url state web_url))
end end
end end
......
...@@ -38,9 +38,11 @@ feature 'issue move to another project' do ...@@ -38,9 +38,11 @@ feature 'issue move to another project' do
end end
scenario 'moving issue to another project', js: true do scenario 'moving issue to another project', js: true do
find('#move_to_project_id', visible: false).set(new_project.id) find('#issuable-move', visible: false).set(new_project.id)
click_button('Save changes') click_button('Save changes')
wait_for_requests
expect(current_url).to include project_path(new_project) expect(current_url).to include project_path(new_project)
expect(page).to have_content("Text with #{cross_reference}#{mr.to_reference}") expect(page).to have_content("Text with #{cross_reference}#{mr.to_reference}")
...@@ -51,7 +53,7 @@ feature 'issue move to another project' do ...@@ -51,7 +53,7 @@ feature 'issue move to another project' do
scenario 'searching project dropdown', js: true do scenario 'searching project dropdown', js: true do
new_project_search.team << [user, :reporter] new_project_search.team << [user, :reporter]
page.within '.js-move-dropdown' do page.within '.detail-page-description' do
first('.select2-choice').click first('.select2-choice').click
end end
...@@ -69,7 +71,7 @@ feature 'issue move to another project' do ...@@ -69,7 +71,7 @@ feature 'issue move to another project' do
background { another_project.team << [user, :guest] } background { another_project.team << [user, :guest] }
scenario 'browsing projects in projects select' do scenario 'browsing projects in projects select' do
click_link 'Select project' click_link 'Move to a different project'
page.within '.select2-results' do page.within '.select2-results' do
expect(page).to have_content 'No project' expect(page).to have_content 'No project'
......
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