mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-21 00:18:33 +08:00
* DEV: Change sidebar header dropdown to use wait_for_animation
Introduced in 54351e1b8a, this
helper should remove the need to have to add the .animated
CSS class in JS for the sidebar.
* DEV: Revert spec change
11 lines
189 B
Ruby
Vendored
11 lines
189 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Components
|
|
class Base
|
|
include Capybara::DSL
|
|
include RSpec::Matchers
|
|
include SystemHelpers
|
|
end
|
|
end
|
|
end
|