discourse/spec/system/page_objects/components/base.rb
Natalie Tay 0ee050e208
DEV: Add helpers for system testing in plugins (#19421)
Add helpers for system testing in plugins
2022-12-16 18:25:31 +08:00

11 lines
161 B
Ruby

# frozen_string_literal: true
module PageObjects
module Components
class Base
include Capybara::DSL
include RSpec::Matchers
end
end
end