mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 03:18:23 +00:00
168de52538
* DEV: Change sidebar header dropdown to use wait_for_animation Introduced in 54351e1b8a9b070bfce6a478e9912a76f1545a54, this helper should remove the need to have to add the .animated CSS class in JS for the sidebar. * DEV: Revert spec change
12 lines
189 B
Ruby
12 lines
189 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Components
|
|
class Base
|
|
include Capybara::DSL
|
|
include RSpec::Matchers
|
|
include SystemHelpers
|
|
end
|
|
end
|
|
end
|