1
0
Fork 0

Corrected makefile to run all tests

closure/master
Mike Gerwitz 2010-11-10 21:00:38 -05:00
parent 0d5afa8d71
commit 7475fa11c6
1 changed files with 3 additions and 1 deletions

View File

@ -2,4 +2,6 @@
.PHONY: test .PHONY: test
test: test:
node ./test/test-*.js for test in `find ./test -name 'test-*.js'`; do \
node $${test}; \
done