From a717c5db7575c0ba677f1fd1e909cba08818bfae Mon Sep 17 00:00:00 2001 From: Kevin Partington Date: Mon, 19 Mar 2018 23:35:39 -0400 Subject: [PATCH] Chore: Adding log at beginning of unit tests in Makefile.js (#10102) --- 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++;