mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 20:33:38 +08:00
c7dce90f43
Previously we were patching ember-cli so that it would split the test bundle into two halves: the helpers, and the tests themselves. This was done so that we could use the helpers for `/theme-qunit` without needing to load all the core tests. This patch has proven problematic to maintain, and will become even harder under Embroider. This commit removes the patch, so that ember-cli goes back to generating a single `tests.js` bundle. This means that core test definitions will now be included in the bundle when using `/theme-qunit`, and so this commit also updates our test module filter to exclude them from the run. This is the same way that we handle plugin tests on the regular `/tests` route, and is fully supported by qunit. For now, this keeps `/theme-qunit` working in both development and production environments. However, we are very likely to drop support in production as part of the move to Embroider.
67 lines
2.1 KiB
Plaintext
67 lines
2.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Theme QUnit Test Runner</title>
|
|
<%= discourse_color_scheme_stylesheets %>
|
|
<meta name="color-scheme" content="light dark">
|
|
|
|
<%- if !@suggested_themes %>
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
|
<%= preload_script "vendor" %>
|
|
<%= preload_script "discourse" %>
|
|
<%= preload_script "admin" %>
|
|
<%- Discourse.find_plugin_js_assets(include_disabled: true).each do |file| %>
|
|
<%= preload_script file %>
|
|
<%- end %>
|
|
<%= preload_script "test-support" %>
|
|
<%= preload_script "tests" %>
|
|
<%= preload_script "test-site-settings" %>
|
|
<%= theme_translations_lookup %>
|
|
<%= theme_js_lookup %>
|
|
<%= theme_lookup("head_tag") %>
|
|
<%= theme_tests %>
|
|
|
|
<%= tag.meta id: 'data-discourse-setup', data: client_side_setup_data %>
|
|
<meta property="og:title" content="">
|
|
<meta property="og:url" content="">
|
|
<meta name="discourse/config/environment" content="<%=u discourse_config_environment(testing: true) %>" />
|
|
|
|
<style>
|
|
<%= File.read("#{Rails.root}/app/assets/javascripts/node_modules/qunit/qunit/qunit.css").html_safe %>
|
|
</style>
|
|
|
|
<%= discourse_stylesheet_link_tag(:desktop, theme_id: nil) %>
|
|
<%= discourse_stylesheet_link_tag("qunit-custom", theme_id: nil) %>
|
|
<%- else %>
|
|
<style>
|
|
html {
|
|
font-family: Arial;
|
|
}
|
|
</style>
|
|
<%- end %>
|
|
|
|
<%- if params['testem'] %>
|
|
<script defer src="/assets/testem.js"></script>
|
|
<%- end %>
|
|
</head>
|
|
<body>
|
|
<%- if @suggested_themes %>
|
|
<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_path(id: id) %></h4>
|
|
<%- end %>
|
|
<%- end %>
|
|
<%- end %>
|
|
|
|
<%- if !@suggested_themes %>
|
|
<%= preload_script "scripts/discourse-test-listen-boot" %>
|
|
<%= preload_script "scripts/discourse-boot" %>
|
|
<%- end %>
|
|
</body>
|
|
</html>
|