Hide testing state by default to avoid perceptual diffs

The perceptual diff extension in Behat defaults to taking
a screenshot of every browser step, including the
"started testsession" one. A simple way to avoid this view
changing is hiding the variable state behind a click event.
The state info is mostly used for manual testing via
dev/tests/startsession anyway.
This commit is contained in:
Ingo Schommer 2013-11-07 12:25:29 +01:00
parent babd24f4b9
commit dbe10da069
1 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,10 @@
<% if State %>
<p>
Current testing state
<ul>
<% loop State %>
<li><strong>$Name:</strong> $Value</li>
<% end_loop %>
</ul>
<a href="#" onclick="document.getElementById('state').style.display = 'block'; return false;">Show testing state</a>
<ul id="state" style="display: none;">
<% loop State %>
<li><strong>$Name:</strong> $Value</li>
<% end_loop %>
</ul>
</p>
<% end_if %>