mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:42:04 +08:00
694b5f108b
These (21 + 3 from previous PRs) are soon to be enabled in rubocop-discourse: Capybara/VisibilityMatcher Lint/DeprecatedOpenSSLConstant Lint/DisjunctiveAssignmentInConstructor Lint/EmptyConditionalBody Lint/EmptyEnsure Lint/LiteralInInterpolation Lint/NonLocalExitFromIterator Lint/ParenthesesAsGroupedExpression Lint/RedundantCopDisableDirective Lint/RedundantRequireStatement Lint/RedundantSafeNavigation Lint/RedundantStringCoercion Lint/RedundantWithIndex Lint/RedundantWithObject Lint/SafeNavigationChain Lint/SafeNavigationConsistency Lint/SelfAssignment Lint/UnreachableCode Lint/UselessMethodDefinition Lint/Void Previous PRs: Lint/ShadowedArgument Lint/DuplicateMethods Lint/BooleanSymbol RSpec/SpecFilePathSuffix
74 lines
1.7 KiB
Ruby
74 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe "Viewing sidebar mobile", type: :system, mobile: true do
|
|
fab!(:user)
|
|
let(:sidebar_dropdown) { PageObjects::Components::SidebarHeaderDropdown.new }
|
|
let(:composer) { PageObjects::Components::Composer.new }
|
|
|
|
before { sign_in(user) }
|
|
|
|
it "does not display the sidebar by default" do
|
|
visit("/latest")
|
|
|
|
expect(sidebar_dropdown).to be_hidden
|
|
end
|
|
|
|
it "does not display the keyboard shortcuts button" do
|
|
visit("/latest")
|
|
|
|
sidebar_dropdown.click
|
|
|
|
expect(sidebar_dropdown).to be_visible
|
|
expect(sidebar_dropdown).to have_no_keyboard_shortcuts_button
|
|
end
|
|
|
|
it "collapses the sidebar when clicking outside of it" do
|
|
visit("/latest")
|
|
|
|
sidebar_dropdown.click
|
|
|
|
expect(sidebar_dropdown).to be_visible
|
|
|
|
sidebar_dropdown.click_outside
|
|
|
|
expect(sidebar_dropdown).to be_hidden
|
|
end
|
|
|
|
it "collapses the sidebar when clicking on a link in the sidebar" do
|
|
visit("/latest")
|
|
|
|
sidebar_dropdown.click
|
|
|
|
expect(sidebar_dropdown).to be_visible
|
|
|
|
sidebar_dropdown.click_topics_link
|
|
|
|
expect(sidebar_dropdown).to be_hidden
|
|
end
|
|
|
|
it "collapses the sidebar when clicking on a button in the sidebar" do
|
|
visit("/latest")
|
|
|
|
sidebar_dropdown.click
|
|
|
|
expect(sidebar_dropdown).to be_visible
|
|
|
|
sidebar_dropdown.click_categories_header_button
|
|
|
|
expect(sidebar_dropdown).to be_hidden
|
|
end
|
|
|
|
it "toggles to desktop view after clicking on the toggle to desktop view button" do
|
|
visit("/latest")
|
|
|
|
expect(page).to have_css(".mobile-view")
|
|
|
|
sidebar_dropdown.click
|
|
sidebar_dropdown.click_toggle_to_desktop_view_button
|
|
|
|
visit("/latest")
|
|
|
|
expect(page).to have_css(".desktop-view")
|
|
end
|
|
end
|