Explicitly show unit test results

This commit is contained in:
Maximilian Grundke
2018-04-10 16:02:53 +02:00
parent fc614ce4ac
commit 6898571dff
2 changed files with 63 additions and 49 deletions

View File

@@ -53,14 +53,21 @@
} }
} }
}
.testrun-assess-results { .testrun-assess-results {
.testrun-container {
display: flex; display: flex;
margin-bottom: 10px;
.testrun-output {
overflow-x: auto;
flex-grow: 1;
}
}
.result { .result {
margin-right: 10px; margin-right: 10px;
margin-top: 20px;
width: 10px; width: 10px;
height: 10px; height: 10px;
} }
@@ -112,6 +119,7 @@
width: 100%; width: 100%;
height: 200px; height: 200px;
} }
}
#commentitor { #commentitor {
margin-bottom: 2rem; margin-bottom: 2rem;

View File

@@ -66,7 +66,13 @@
<h5><%= t('request_for_comments.test_results') %></h5> <h5><%= t('request_for_comments.test_results') %></h5>
<div class="testrun-assess-results"> <div class="testrun-assess-results">
<% assess_runs.each do |testrun| %> <% assess_runs.each do |testrun| %>
<div class="result <%= testrun.passed ? 'passed' : 'failed' %>" title="<%= testrun.output %>"></div> <div class="testrun-container">
<div class="result <%= testrun.passed ? 'passed' : 'failed' %>"></div>
<div class="collapsed testrun-output text">
<span class="fa fa-chevron-down collapse-button"></span>
<pre><%= testrun.output or t('request_for_comments.no_output')%></pre>
</div>
</div>
<% end %> <% end %>
</div> </div>
<% end %> <% end %>