From f0de6bd4616a85a35688b8e45c0d22f1bf2c5c04 Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Tue, 15 Aug 2017 14:50:10 -0400 Subject: [PATCH] node tests: Add "Starting node tests..." message. --- tools/test-js-with-node | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/test-js-with-node b/tools/test-js-with-node index 7e6a8865e5..ff67fd745c 100755 --- a/tools/test-js-with-node +++ b/tools/test-js-with-node @@ -99,6 +99,8 @@ else: # Run the index.js test runner, which runs all the other tests. command = ['node', '--stack-trace-limit=100', INDEX_JS] + args +print('Starting node tests...') + # If we got this far, we can run the tests! try: ret = subprocess.check_call(command)