debian-mirror-gitlab/spec/support/slash_commands_helpers.rb
2017-08-17 22:00:37 +05:30

11 lines
254 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
find('.js-comment-submit-button').trigger('click')
end
end
end
end