mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
This PR includes support for running theme tests in legacy ember production envrionments.
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
<%
|
|
if @force_ember_debug || Rails.env.development? || Rails.env.test?
|
|
require_asset ("ember.debug.js")
|
|
else
|
|
require_asset ("ember.prod.js")
|
|
end
|
|
%>
|