mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 14:08:33 +08:00
252bb87ab3
This reverts commit ea84a82f77
.
This is causing problems with `/theme-qunit` on legacy, non-ember-cli production sites. Reverting while we work on a fix
20 lines
634 B
Plaintext
20 lines
634 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 "discourse/tests/test_helper" %>
|
|
<%= preload_script "discourse/tests/core_plugins_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>
|