From bb78af38d8306d72666a6490617b8b632aba7591 Mon Sep 17 00:00:00 2001 From: Nathan Downs Date: Mon, 4 Jun 2018 17:44:42 -0700 Subject: [PATCH] Change the terminology from blocks/tests to tests/assertions --- testrunner.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testrunner.js b/testrunner.js index ef31f306..153f83cd 100644 --- a/testrunner.js +++ b/testrunner.js @@ -22,9 +22,9 @@ var // retrieve the total executed tests number total: ''.concat( passed, - ' blocks (', + ' tests (', resultHeader ? resultHeader.textContent.replace(/\D/g, '') : 'no', - ' single tests)' + ' assertions)' ), passed: passed, failed: Math.max(0, document.querySelectorAll('.fail').length - 1),