gitlab-org--gitlab-foss/spec/support/helpers/quick_actions_helpers.rb

13 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