From 09b677b605fa47b08a6cc7b0f8e44c8fd28d1bc3 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 4 Aug 2016 09:29:30 -0700 Subject: [PATCH] test-js-with-node: Fix istanbul not being in PATH. --- tools/test-js-with-node | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test-js-with-node b/tools/test-js-with-node index a416a1d7d8..be1eb98d89 100755 --- a/tools/test-js-with-node +++ b/tools/test-js-with-node @@ -4,6 +4,7 @@ set -e cd "$(dirname "$0")"/.. export NODE_PATH=/usr/lib/nodejs:static +export PATH=$PATH:node_modules/.bin INDEX_JS=frontend_tests/zjsunit/index.js NODEJS=$(which nodejs || which node)