mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Theme QUnit Test Runner</title>
|
|
<%= discourse_color_scheme_stylesheets %>
|
|
<%- if !@suggested_themes %>
|
|
<%= discourse_stylesheet_link_tag(:desktop, theme_id: nil) %>
|
|
<%= discourse_stylesheet_link_tag(:test_helper, theme_id: nil) %>
|
|
<%= preload_script "locales/en" %>
|
|
<%= preload_script "discourse/tests/theme_qunit_ember_jquery" %>
|
|
<%= preload_script "discourse/tests/theme_qunit_vendor" %>
|
|
<%= preload_script "discourse/tests/theme_qunit_tests_vendor" %>
|
|
<%= preload_script "markdown-it-bundle" %>
|
|
<%= preload_script "application" %>
|
|
<%- Discourse.find_plugin_js_assets(include_official: allow_plugins?, include_unofficial: allow_third_party_plugins?, request: request).each do |file| %>
|
|
<%= preload_script file %>
|
|
<%- end %>
|
|
<%= preload_script "admin" %>
|
|
<%= preload_script "discourse/tests/theme_qunit_helper" %>
|
|
<%= theme_translations_lookup %>
|
|
<%= theme_js_lookup %>
|
|
<%= theme_lookup("head_tag") %>
|
|
<%= theme_tests %>
|
|
<%= preload_script_url ExtraLocalesController.url('admin') %>
|
|
<%= tag.meta id: 'data-discourse-setup', data: client_side_setup_data %>
|
|
<meta property="og:title" content="">
|
|
<meta property="og:url" content="">
|
|
<%= preload_script "discourse/tests/test_starter" %>
|
|
<%- else %>
|
|
<style>
|
|
html {
|
|
font-family: Arial;
|
|
}
|
|
</style>
|
|
<%- end %>
|
|
</head>
|
|
<body>
|
|
<%- if !@suggested_themes %>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
<%- else %>
|
|
<h2>Theme QUnit Test Runner</h2>
|
|
<%- if @suggested_themes.size == 0 %>
|
|
<p>Cannot find any theme tests.</p>
|
|
<%- else %>
|
|
<h3>Select a theme/component: </h3>
|
|
<%- @suggested_themes.each do |(id, name)| %>
|
|
<h4><%= link_to name, theme_qunit_url(id: id) %></h4>
|
|
<%- end %>
|
|
<%- end %>
|
|
<%- end %>
|
|
</body>
|
|
</html>
|