run each jasmine node test separately
[mkws-moved-to-github.git] / test / Makefile
index ec1fd0c..615e323 100644 (file)
@@ -9,7 +9,10 @@ distclean:
        
 
 check:
-       jasmine-node --captureExceptions --forceexit ./spec 
+       for i in ./spec/*.js; do \
+         echo "$$i"; \
+         jasmine-node --captureExceptions --forceexit $$i; \
+       done
 
 test: check