1
0
Fork 0

Test runner will not output duplicate newline before results when total % 60

perfodd
Mike Gerwitz 2014-01-20 02:10:37 -05:00
parent 2f55d60993
commit 476f86723e
1 changed files with 5 additions and 1 deletions

View File

@ -236,7 +236,11 @@ function init()
*/
function endStats()
{
testPrint( "\n\n" );
testPrint( "\n" );
if ( tcount % 60 !== 0 )
{
testPrint( "\n" );
}
if ( failures.length )
{