FIX: Color scheme stylesheet not loaded when no default theme is set.

Follow-up to 8e3691d5370bb95d99fe750f46287763721fcc9c
This commit is contained in:
Alan Guo Xiang Tan
2021-06-21 12:44:41 +08:00
parent 7b31d8a11b
commit be655762d8
2 changed files with 14 additions and 17 deletions

View File

@ -396,13 +396,14 @@ describe Stylesheet::Manager do
describe 'color_scheme_stylesheets' do
it "returns something by default" do
link = manager.color_scheme_stylesheet_link_tag
expect(link).not_to eq("")
expect(link).to include("color_definitions_base")
end
it "does not crash when no default theme is set" do
SiteSetting.default_theme_id = -1
link = manager.color_scheme_stylesheet_link_tag
expect(link).not_to eq("")
expect(link).to include("color_definitions_base")
end
it "loads base scheme when defined scheme id is missing" do