Confirmed users
208
edits
Hermescheng (talk | contribs) |
(→Others: Add tips to hide passed cases) |
||
| Line 116: | Line 116: | ||
* If 2 error records for one test case (It seems race condition with the logging, [https://bugzilla.mozilla.org/show_bug.cgi?id=1050170 Bug 1050170] tracks this issue), please do not double counting the same fail case. | * If 2 error records for one test case (It seems race condition with the logging, [https://bugzilla.mozilla.org/show_bug.cgi?id=1050170 Bug 1050170] tracks this issue), please do not double counting the same fail case. | ||
[[File:Double_counting_error.png|thumbnail|none|1000px|Double counting error]] | [[File:Double_counting_error.png|thumbnail|none|1000px|Double counting error]] | ||
=== Tips === | |||
* To hide the passed cases to see the failed/error cases more clearly, do the following: | |||
*# Press F12 to open the Firefox Developer Tool > Console | |||
*# Run the following code: <pre>[].forEach.call(document.getElementsByClassName('passed'), function(elem){elem.style.display="none"})</pre> | |||