mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 17:41:55 +08:00
In a previous PR, I introduced this system spec that checks that a sidebar link is auto-generated for certain plugins. This causes problems, because the core test suite can be run with plugins either enabled or disabled, causing flaky tests.
27 lines
649 B
Ruby
Vendored
27 lines
649 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Admin | Sidebar Navigation", type: :system do
|
|
fab!(:admin)
|
|
|
|
let(:sidebar) { PageObjects::Components::NavigationMenu::Sidebar.new }
|
|
|
|
before do
|
|
SiteSetting.navigation_menu = "sidebar"
|
|
SiteSetting.admin_sidebar_enabled_groups = [Group::AUTO_GROUPS[:admins]]
|
|
|
|
sign_in(admin)
|
|
end
|
|
|
|
it "adds an auto-generated plugin link to the admin sidebar" do
|
|
SiteSetting.enable_markdown_footnotes = true
|
|
|
|
visit("/admin")
|
|
|
|
sidebar.toggle_section(:plugins)
|
|
|
|
expect(page).to have_css(
|
|
".sidebar-section-link-content-text",
|
|
text: I18n.t("js.footnote.title"),
|
|
)
|
|
end
|
|
end
|