summaryrefslogtreecommitdiff
path: root/spec/support/helpers/quick_actions_helpers.rb
blob: cb853f5363fca5648fd320c3e92a72659c614d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module QuickActionsHelpers
  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').click
      end
    end
  end
end