From 6f6466330dda9a9738868f146ce4fae47d88e332 Mon Sep 17 00:00:00 2001
From: Chris Rebert <code@rebertia.com>
Date: Wed, 17 Sep 2014 18:30:02 -0700
Subject: [PATCH] Make it easier to see failing tests in Sauce screencasts

...by hiding passing tests in the list of tests.
---
 js/tests/index.html | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/js/tests/index.html b/js/tests/index.html
index 1c025cf761..194f531aaf 100644
--- a/js/tests/index.html
+++ b/js/tests/index.html
@@ -10,6 +10,11 @@
     <!-- QUnit -->
     <link rel="stylesheet" href="vendor/qunit.css" media="screen">
     <script src="vendor/qunit.js"></script>
+    <style>
+      #qunit-tests > li.pass {
+        display: none;/* Make it easier to see failing tests is Sauce screencasts */
+      }
+    </style>
     <script>
       // See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
       var log = []
-- 
GitLab