debian-mirror-gitlab/spec/support/slash_commands_helpers.rb

11 lines
254 B
Ruby
Raw Normal View History

2016-09-29 09:46:39 +05:30
module SlashCommandsHelpers
def write_note(text)
Sidekiq::Testing.fake! do
page.within('.js-main-target-form') do
fill_in 'note[note]', with: text
2017-08-17 22:00:37 +05:30
find('.js-comment-submit-button').trigger('click')
2016-09-29 09:46:39 +05:30
end
end
end
end