mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
4cceb55621
This reverts commitf4c6a61855
anda8325c9016
This update of ember-auto-import and webpack causes significantly higher memory use during rebuilds. This made ember-cli totally unusable on 1GB RAM / 2GB swap environments. We don't have a specific need for this upgrade right now, so reverting for now.
27 lines
972 B
Plaintext
27 lines
972 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>QUnit Test Runner</title>
|
|
<%= discourse_color_scheme_stylesheets %>
|
|
<%= discourse_stylesheet_link_tag(:desktop, theme_id: nil) %>
|
|
<%= discourse_stylesheet_link_tag(:test_helper, theme_id: nil) %>
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
|
<%= preload_script "vendor" %>
|
|
<%= preload_script "application" %>
|
|
<%= preload_script "admin" %>
|
|
<%= preload_script "discourse/tests/test-support-rails" %>
|
|
<%= preload_script "discourse/tests/test-helpers-rails" %>
|
|
<%= preload_script "discourse/tests/active-plugins" %>
|
|
<%= preload_script "discourse/tests/core-tests" %>
|
|
<%= preload_script "discourse/tests/plugin-tests" %>
|
|
<%= preload_script "discourse/tests/test_starter" %>
|
|
<%= csrf_meta_tags %>
|
|
<meta property="og:title" content="">
|
|
<meta property="og:url" content="">
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|