DEV: Change method used to reference custom font assets (#13446)

The `asset-url` helper has been deprecated.
This commit is contained in:
Penar Musaraj
2021-06-21 09:33:12 -04:00
committed by GitHub
parent c69b58e22e
commit 515fd8a4c3
2 changed files with 9 additions and 1 deletions

View File

@@ -61,6 +61,13 @@ describe Stylesheet::Importer do
expect(compile_css("desktop"))
.to include(":root{--font-family: #{base_font[:stack]}}")
.and include(":root{--heading-font-family: #{heading_font[:stack]}}")
set_cdn_url("http://cdn.localhost")
# uses CDN and includes cache-breaking param
expect(compile_css("mobile"))
.to include("http://cdn.localhost/fonts/#{base_font[:variants][0][:filename]}?v=#{DiscourseFonts::VERSION}")
.and include("http://cdn.localhost/fonts/#{heading_font[:variants][0][:filename]}?v=#{DiscourseFonts::VERSION}")
end
it "includes all fonts in wizard" do