From 5b9b9e5210a5c5d479bad78856bb41f68a5d5c00 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Wed, 6 Jun 2018 06:36:42 -0400 Subject: [PATCH] add summary line to html runner --- test/runner.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/runner.html b/test/runner.html index e64e9f1..3bbb66e 100644 --- a/test/runner.html +++ b/test/runner.html @@ -17,6 +17,8 @@ r.pass.forEach((p) => document.write(`
${p}`)); r.fail.forEach((f) => document.write(`
${f}`)); + + document.write(`

tests ${r.pass.length + r.fail.length} pass ${r.pass.length} fail ${r.fail.length}`); });