From f689d1f97f391d5a43aace90ddc951a9daf33ec6 Mon Sep 17 00:00:00 2001 From: Kevin Partington Date: Mon, 19 Mar 2018 18:17:14 -0400 Subject: [PATCH] Chore: Adding log at beginning of unit tests in Makefile.js --- Makefile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.js b/Makefile.js index 0f92dc12113..d3e3ec81195 100644 --- a/Makefile.js +++ b/Makefile.js @@ -569,6 +569,8 @@ target.test = function() { let errors = 0, lastReturn; + echo("Running unit tests"); + lastReturn = exec(`${getBinFile("istanbul")} cover ${MOCHA} -- -R progress -t ${MOCHA_TIMEOUT} -c ${TEST_FILES}`); if (lastReturn.code !== 0) { errors++;