mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 10:51:45 +08:00
![Osama Sayegh](/assets/img/avatar_default.png)
This reverts commit 7217dcb67a
.
https://meta.discourse.org/t/failed-to-bootstrap-due-to-out-of-memory-killer/188141/18?u=osama
Precompiling test_helper.js is so expensive that it can make bootstrap
fail on servers with limited resources (2GB RAM). We will find another
way that doesn't require much resources.
23 lines
658 B
Plaintext
23 lines
658 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>QUnit Test Runner</title>
|
|
<%= discourse_color_scheme_stylesheets %>
|
|
<%= stylesheet_link_tag "test_helper" %>
|
|
<%= javascript_include_tag "test_helper" %>
|
|
<%= theme_tests %>
|
|
<%= theme_translations_lookup %>
|
|
<%= theme_js_lookup %>
|
|
<%= theme_lookup("head_tag") %>
|
|
<%= javascript_include_tag "test_starter" %>
|
|
<%= csrf_meta_tags %>
|
|
<script src="<%= ExtraLocalesController.url('admin') %>"></script>
|
|
<meta property="og:title" content="">
|
|
<meta property="og:url" content="">
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|