From f104723017c0e8768ab55ae118c76e136f949909 Mon Sep 17 00:00:00 2001 From: Jan Dvorak Date: Thu, 27 May 2021 11:10:05 +0200 Subject: [PATCH] Remove [object Object] from tests --- tools/tool-testing/run.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/tool-testing/run.js b/tools/tool-testing/run.js index 7233732bd9..4102f08596 100644 --- a/tools/tool-testing/run.js +++ b/tools/tool-testing/run.js @@ -551,8 +551,7 @@ export default class Run { testList.notifyFailed(test, failure); } else { - Console.success(`... ok! (${test.durationMs} ms)`, - Console.options({ indent: 2 })); + Console.success(`... ok! (${test.durationMs} ms)`); } } }