Updated tests
This commit is contained in:
parent
b1264d86fa
commit
f95f242cfa
6 changed files with 10 additions and 10 deletions
|
@ -79,7 +79,7 @@ class Spinach::Features::AwardEmoji < Spinach::FeatureSteps
|
|||
step 'I leave comment with a single emoji' do
|
||||
page.within('.js-main-target-form') do
|
||||
fill_in 'note[note]', with: ':smile:'
|
||||
click_button 'Add Comment'
|
||||
click_button 'Comment'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -267,7 +267,7 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
|
|||
step 'I leave a comment with code block' do
|
||||
page.within(".js-main-target-form") do
|
||||
fill_in "note[note]", with: "```\nCommand [1]: /usr/local/bin/git , see [text](doc/text)\n```"
|
||||
click_button "Add Comment"
|
||||
click_button "Comment"
|
||||
sleep 0.05
|
||||
end
|
||||
end
|
||||
|
|
|
@ -417,7 +417,7 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
|
|||
|
||||
page.within(".js-discussion-note-form") do
|
||||
fill_in "note_note", with: "Line is wrong on here"
|
||||
click_button "Add Comment"
|
||||
click_button "Comment"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -509,7 +509,7 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
|
|||
def leave_comment(message)
|
||||
page.within(".js-discussion-note-form", visible: true) do
|
||||
fill_in "note_note", with: message
|
||||
click_button "Add Comment"
|
||||
click_button "Comment"
|
||||
end
|
||||
page.within(".notes_holder", visible: true) do
|
||||
expect(page).to have_content message
|
||||
|
|
|
@ -93,14 +93,14 @@ module SharedDiffNote
|
|||
|
||||
page.within("form[id$='#{sample_commit.line_code}']") do
|
||||
fill_in 'note[note]', with: ':smile:'
|
||||
click_button('Add Comment')
|
||||
click_button('Comment')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
step 'I submit the diff comment' do
|
||||
page.within(diff_file_selector) do
|
||||
click_button("Add Comment")
|
||||
click_button("Comment")
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -182,7 +182,7 @@ module SharedIssuable
|
|||
|
||||
page.within('.js-main-target-form') do
|
||||
fill_in 'note[note]', with: "##{issuable.to_reference(project)}"
|
||||
click_button 'Add Comment'
|
||||
click_button 'Comment'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ module SharedNote
|
|||
step 'I leave a comment like "XML attached"' do
|
||||
page.within(".js-main-target-form") do
|
||||
fill_in "note[note]", with: "XML attached"
|
||||
click_button "Add Comment"
|
||||
click_button "Comment"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -30,7 +30,7 @@ module SharedNote
|
|||
|
||||
step 'I submit the comment' do
|
||||
page.within(".js-main-target-form") do
|
||||
click_button "Add Comment"
|
||||
click_button "Comment"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -115,7 +115,7 @@ module SharedNote
|
|||
step 'I leave a comment with a header containing "Comment with a header"' do
|
||||
page.within(".js-main-target-form") do
|
||||
fill_in "note[note]", with: "# Comment with a header"
|
||||
click_button "Add Comment"
|
||||
click_button "Comment"
|
||||
sleep 0.05
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue