mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 18:14:28 +08:00
a169dc6832
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.
16 lines
436 B
Plaintext
16 lines
436 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>QUnit Test Runner</title>
|
|
<%= stylesheet_link_tag "test_helper" %>
|
|
<%= discourse_stylesheet_link_tag :wizard, theme_ids: nil %>
|
|
<%= javascript_include_tag "wizard/test/test_helper" %>
|
|
<%= csrf_meta_tags %>
|
|
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|