1
0
Fork 0

Added BASH tests to Makefile

closure/master
Mike Gerwitz 2010-12-20 22:29:10 -05:00
parent 8b8c7e8533
commit 572601f5a0
1 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,11 @@ combine: mkbuild
test:
for test in `find ./test -name 'test-*.js'`; do \
node $${test}; \
done
done; \
for test in `find ./test -regex '.*/test-[^\.]*'`; do \
./$$test; \
done;
# clean up build dir
clean: