1
0
Fork 0

Added cwd to NODE_PATH for test-suite

If the cwd was not part of the user's NODE_PATH, the runner would fail
perfodd
Mike Gerwitz 2014-01-29 22:47:19 -05:00
parent 6152fe9f08
commit 84dd6757bb
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ test-suite:
if HAS_NODE
@echo "GNU ease.js Test Suite"
@echo
@NODE_PATH="$(path_test):$(NODE_PATH)" $(NODE) --stack_trace_limit=20 \
@NODE_PATH="$(path_test):.:$(NODE_PATH)" $(NODE) --stack_trace_limit=20 \
$(path_test)/runner.js $(test_cases)
else
@echo "Node.js must be installed in order to run the test suite"