This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/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