gitlab-org--gitlab-foss/spec/support/helpers/quick_actions_helpers.rb
2019-07-25 17:33:34 +12:00

12 lines
273 B
Ruby

# 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