discourse/spec/components/stylesheet/compiler_spec.rb

22 lines
579 B
Ruby
Raw Normal View History

require 'rails_helper'
require 'stylesheet/compiler'
describe Stylesheet::Compiler do
it "can compile desktop mobile and desktop css" do
css,_map = Stylesheet::Compiler.compile_asset("desktop")
expect(css.length).to be > 1000
css,_map = Stylesheet::Compiler.compile_asset("mobile")
expect(css.length).to be > 1000
end
it "supports asset-url" do
css,_map = Stylesheet::Compiler.compile(".body{background-image: asset-url('foo.png');}","test.scss")
expect(css).to include("url('/foo.png')")
expect(css).not_to include('asset-url')
end
end