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.
This commit is contained in:
Ted Johansson
2025-02-07 11:58:55 +08:00
committed by GitHub
parent 52a50f1028
commit b46718f628
2 changed files with 27 additions and 15 deletions

View File

@@ -337,19 +337,4 @@ describe "Admin | Sidebar Navigation", type: :system do
],
)
end
it "adds auto-generated plugin links for plugins with settings" do
skip if Discourse.plugins.empty?
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