diff --git a/Makefile b/Makefile index 9fd39ea..accc3f6 100644 --- a/Makefile +++ b/Makefile @@ -2,4 +2,6 @@ .PHONY: test test: - node ./test/test-*.js + for test in `find ./test -name 'test-*.js'`; do \ + node $${test}; \ + done