X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2FMakefile;h=33c5fb3fa7453461f7ff2c2433a5d2f776969279;hb=196724f16b3e5d7be01f6227b4dbceac5694973e;hp=8891679caa31270b38be317c24235534ceaac68b;hpb=c6573b00a7fd15722df7ca5155a46fff05b1040c;p=mkws-moved-to-github.git diff --git a/test/Makefile b/test/Makefile index 8891679..33c5fb3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,26 +1,37 @@ # Copyright (c) 2013 IndexData ApS. http://indexdata.com +# For running on Mike's local install of node.js +MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin +NPM_INSTALL_FLAGS=-q + all: check clean: distclean: rm -rf node_modules - -check: - jasmine-node --captureExceptions ./spec +mkws-complete-syntax-check: + ${MAKE} -C../tools/htdocs $@ + +check: mkws-complete-syntax-check + jasmine-node --noColor --captureExceptions --forceexit ./spec + jasmine-node --noColor --captureExceptions --forceexit ./spec-sp test: check +terse: + $(MIKE) jasmine-node --noColor --captureExceptions --forceexit spec + jsbeautifier jsb indent: - for i in ./spec/*.js ./js/*.js; do \ + for i in ./spec*/*.js ./js/*.js; do \ jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \ done node-modules: node_modules node_modules: - npm install jquery jsdom request jasmine-node + npm install ${NPM_INSTALL_FLAGS} jQuery xmlhttprequest jsdom request jasmine-node help: - @echo "make [ all | clean | check | jsbeautifier | node-modules ]" + @echo "make [ all | check | clean | distclean ]" + @echo " [ jsbeautifier | node-modules ]"