From af3ab060e150c705237f7596d537e947482c5894 Mon Sep 17 00:00:00 2001 From: webzwo0i Date: Fri, 10 Jul 2020 21:50:43 +0200 Subject: [PATCH] time is in test.duration, not test.speed --- tests/frontend/runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/frontend/runner.js b/tests/frontend/runner.js index 5a8da6e9f..e9eedc646 100644 --- a/tests/frontend/runner.js +++ b/tests/frontend/runner.js @@ -60,7 +60,7 @@ $(function(){ stats.tests = stats.tests || 0; stats.tests++; if ('passed' == test.state) { - append("->","[green]PASSED[clear] :", test.title," ",test.speed,"ms"); + append("->","[green]PASSED[clear] :", test.title," ",test.duration,"ms"); } else if (test.pending) { append("->","[yellow]PENDING[clear]:", test.title); } else {