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;
margin-bottom: 10px;
.testrun-output {
overflow-x: auto;
flex-grow: 1;
}
}
.result {
margin-right: 10px;
margin-top: 20px;
width: 10px;
height: 10px;
}
@ -89,13 +96,13 @@
box-shadow: 0 0 11px 1px rgba(222,0,0,1);
}
}
}
#mark-as-solved-button {
#mark-as-solved-button {
margin-top: 20px;
}
}
#thank-you-container {
#thank-you-container {
display: none;
margin-top: 20px;
padding: 5px;
@ -106,11 +113,12 @@
button {
margin-right: 10px;
}
}
}
#thank-you-note {
#thank-you-note {
width: 100%;
height: 200px;
}
}
#commentitor {

View File

@ -66,7 +66,13 @@
<h5><%= t('request_for_comments.test_results') %></h5>
<div class="testrun-assess-results">
<% 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 %>
</div>
<% end %>