fixed move issue specs

[ci skip]
This commit is contained in:
Phil Hughes 2017-05-25 12:50:11 +01:00
parent 625d344206
commit 04178d72b5
3 changed files with 7 additions and 5 deletions

View File

@ -50,7 +50,7 @@
:class="{ disabled: updateLoading || !isSubmitEnabled }"
type="submit"
:disabled="updateLoading || !isSubmitEnabled"
@click="updateIssuable">
@click.prevent="updateIssuable">
Save changes
<i
class="fa fa-spinner fa-spin"

View File

@ -204,7 +204,7 @@ describe Projects::IssuesController do
body = JSON.parse(response.body)
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

View File

@ -38,9 +38,11 @@ feature 'issue move to another project' do
end
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')
wait_for_requests
expect(current_url).to include project_path(new_project)
expect(page).to have_content("Text with #{cross_reference}#{mr.to_reference}")
@ -51,7 +53,7 @@ feature 'issue move to another project' do
scenario 'searching project dropdown', js: true do
new_project_search.team << [user, :reporter]
page.within '.js-move-dropdown' do
page.within '.detail-page-description' do
first('.select2-choice').click
end
@ -69,7 +71,7 @@ feature 'issue move to another project' do
background { another_project.team << [user, :guest] }
scenario 'browsing projects in projects select' do
click_link 'Select project'
click_link 'Move to a different project'
page.within '.select2-results' do
expect(page).to have_content 'No project'