summaryrefslogtreecommitdiff
path: root/spec/support/slash_commands_helpers.rb
blob: 0d91fe5fd5d9708bf27e3f3bf737d9f9a4372fdd (plain)
1
2
3
4
5
6
7
8
9
10
module SlashCommandsHelpers
  def write_note(text)
    Sidekiq::Testing.fake! do
      page.within('.js-main-target-form') do
        fill_in 'note[note]', with: text
        find('.comment-btn').trigger('click')
      end
    end
  end
end