discourse/plugins/footnote/spec/system/admin_sidebar_navigation_spec.rb
Ted Johansson b46718f628
DEV: Move a plugin related system spec to footnote plugin (#31230)
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.
2025-02-07 11:58:55 +08:00

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