discourse/spec/system/page_objects/components/base.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
161 B
Ruby
Raw Normal View History

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