mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 19:52:03 +08:00
Covers default reactions, `discourse_reactions_experimental_allow_any_emoji`, `discourse_reactions_enabled_reactions`, and interaction with the `emoji_deny_list` setting from core. --------- Co-authored-by: Jarek Radosz <jradosz@gmail.com>
15 lines
256 B
Ruby
15 lines
256 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Components
|
|
class Base
|
|
include Capybara::DSL
|
|
include RSpec::Matchers
|
|
include SystemHelpers
|
|
|
|
def context_component
|
|
page.find(@context)
|
|
end
|
|
end
|
|
end
|
|
end
|