X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2FMakefile;h=b9ea996050ed8c7e75a9856bd6c98b16faa524bc;hb=751f456c8754f1adeada606b404cd0f54b367cbc;hp=fbccd52247678eb09a9cd67c0d7c0243b56d1ed1;hpb=9ad8d218f17ec18be3073734fec5bd0c1978bac9;p=mkws-moved-to-github.git diff --git a/test/Makefile b/test/Makefile index fbccd52..b9ea996 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,11 +1,42 @@ # 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 +PHANTOMJS= ./node_modules/phantomjs/bin/phantomjs + all: check -clean distclean: +clean: + +distclean: + rm -rf node_modules + +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 + +phantomjs: + @# ${PHANTOMJS} phantom/evaluate.js https://mkws-dev.indexdata.com/jasmine-local-popup.html + ${PHANTOMJS} phantom/evaluate.js https://mkws-dev.indexdata.com/jasmine-popup.html + +jsbeautifier jsb indent: + for i in ./spec*/*.js ./js/*.js; do \ + jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \ + done -check: - jasmine-node ./spec +node-modules: node_modules +node_modules: + npm install ${NPM_INSTALL_FLAGS} jQuery xmlhttprequest jsdom request jasmine-node phantomjs help: - @echo "make [ all | clean | check ]" + @echo "make [ all | check | phantomjs | clean | distclean ]" + @echo " [ jsbeautifier | node-modules ]"