gitlab-org--gitlab-foss/spec/support/slash_commands_helpers.rb

11 lines
226 B
Ruby

module SlashCommandsHelpers
def write_note(text)
Sidekiq::Testing.fake! do
page.within('.js-main-target-form') do
fill_in 'note[note]', with: text
click_button 'Comment'
end
end
end
end