From 121fa3797c2f2b1f2a0bb7d80740aee38a4caf57 Mon Sep 17 00:00:00 2001 From: Rory Campbell Date: Mon, 25 Jan 2021 23:00:34 +0100 Subject: [PATCH] improves test log --- run-example-tests.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/run-example-tests.js b/run-example-tests.js index 77f5ac13..7629ec0f 100644 --- a/run-example-tests.js +++ b/run-example-tests.js @@ -11,9 +11,8 @@ const go = async () => { const packages = getDirectories('./examples'); - console.log(packages) - for(let package of packages){ + console.log(`Testing ${package}`); await exec(`cd "./examples/${package}" && npm t`) } }