From db14c39c94c4c006e8f6accd16db6ad002fd166d Mon Sep 17 00:00:00 2001 From: Martin Boonk Date: Mon, 13 May 2024 18:57:51 +0200 Subject: [PATCH] runapptests - Log step text for resetCall --- bin/runapptests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/runapptests.js b/bin/runapptests.js index 4ac9cacf3..92d480c18 100755 --- a/bin/runapptests.js +++ b/bin/runapptests.js @@ -279,7 +279,7 @@ function runStep(step, subtest, test, state){ }); break; case "resetCall": - console.log(`> RESET CALL ${step.id}`); + console.log(`> RESET CALL ${step.id}`, step.text ? "- " + step.text : ""); emu.tx(`global.APPTESTS.funcCalls.${step.id} = 0;\n`); emu.tx(`global.APPTESTS.funcArgs.${step.id} = undefined;\n`); break;