diff options
| author | Chris Rebert <[email protected]> | 2014-09-17 18:30:02 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-09-17 18:33:39 -0700 |
| commit | 6f6466330dda9a9738868f146ce4fae47d88e332 (patch) | |
| tree | 4fde4b99a01bb8ed469569cb3fd4f6d89f280fdc | |
| parent | 3a1bf02ebf9a04757784973e234fb81d8b44a025 (diff) | |
| download | bootstrap-6f6466330dda9a9738868f146ce4fae47d88e332.tar.xz bootstrap-6f6466330dda9a9738868f146ce4fae47d88e332.zip | |
Make it easier to see failing tests in Sauce screencasts
...by hiding passing tests in the list of tests.
| -rw-r--r-- | js/tests/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/js/tests/index.html b/js/tests/index.html index 1c025cf76..194f531aa 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 = [] |
