diff --git a/spec/system/support/precompile_assets.rb b/spec/system/support/precompile_assets.rb index 413969e0b6..519ecb0fca 100644 --- a/spec/system/support/precompile_assets.rb +++ b/spec/system/support/precompile_assets.rb @@ -11,13 +11,11 @@ RSpec.configure do |config| # We can use webpack-dev-server for tests, too! # Useful if you working on a frontend code fixes and want to verify them via system tests. if Webpacker.dev_server.running? - $stdout.puts "\n⚙️ Webpack dev server is running! Skip assets compilation.\n" next else - $stdout.puts "\n🐢 Precompiling assets.\n" + $stdout.puts "\n Precompiling assets.\n" - # The code to run webpacker:compile Rake task - # ... + Webpacker.compile end end end